/* ============================================================
   MAG Linen — Main Stylesheet v2.0
   B2B Wholesale Towel Manufacturer — Mississauga, ON
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
    /* ── Brand palette from MAG Linen logo ── */
    --navy:          #4E6E90;   /* Steel Blue — primary */
    --navy-dark:     #2D4A62;   /* Deep Steel — footer, dark sections */
    --navy-deeper:   #1A2F44;   /* Darkest Steel */
    --gold:          #CDB4BC;   /* Dusty Rose — accent */
    --gold-dark:     #B99BA6;   /* Deeper Rose */
    --gold-light:    #8BB0CC;   /* Powder Blue — secondary accent */
    --white:         #FFFFFF;
    --off-white:     #F7F5F3;   /* Warm off-white from logo background */
    --gray-lightest: #F0EDE9;
    --gray-light:    #E8E2DC;
    --gray:          #D4C9C2;
    --gray-medium:   #A8999E;
    --gray-dark:     #7A6E73;
    --text-primary:  #2D4A62;   /* Deep Steel for headings */
    --text-secondary: #476281;  /* Muted steel blue — 5.9:1 on white, WCAG AA */
    --text-light:    #8BB0CC;   /* Powder Blue for light text */
    --rose-dark:     #7A4E56;   /* Deep rose for economy tag text */

    --font:         'Inter', 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --container:     1200px;
    --section-py:    88px;
    --card-radius:   12px;
    --card-radius-sm: 8px;

    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.05);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.10), 0 6px 16px rgba(0,0,0,0.06);
    --shadow-navy: 0 12px 40px rgba(78,110,144,0.22);
    --shadow-gold:  0 8px 24px rgba(205,180,188,0.30);
    --shadow-card-hover: 0 20px 48px rgba(78,110,144,0.18), 0 4px 12px rgba(0,0,0,0.06);

    --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s var(--ease-in-out);
    --transition-slow: 0.4s var(--ease-out);

    --header-h: 72px;
    --border-gold: 1px solid rgba(205,180,188,0.3);
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* Keyboard navigation focus indicator — accessible for all interactive elements */
:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 3px;
    border-radius: 3px;
}
.btn:focus-visible,
.btn-quote:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
}
.nav-menu li a:focus-visible,
.footer-links a:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
    border-radius: 4px;
}
.product-card:focus-visible,
.industry-card:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 4px;
}
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}
h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.7; }
p:last-child { margin-bottom: 0; }

/* ── 3. Animation Keyframes ──────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.94) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-36px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes shimmerSweep {
    0%   { left: -100%; }
    100% { left: 150%; }
}
@keyframes drawLine {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes pulseRing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes gradientText {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
@keyframes counterUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── 4. Animation Utility Classes ────────────────────────── */
[data-anim] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
    will-change: opacity, transform;
}
[data-anim="fade"] {
    transform: none;
}
[data-anim="left"] {
    transform: translateX(-36px);
}
[data-anim="right"] {
    transform: translateX(36px);
}
[data-anim="scale"] {
    transform: scale(0.93);
}
[data-anim].is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger children */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s var(--ease-spring), transform 0.55s var(--ease-spring);
}
[data-stagger].is-visible > * {
    opacity: 1;
    transform: none;
}
[data-stagger].is-visible > *:nth-child(1)  { transition-delay: 0ms; }
[data-stagger].is-visible > *:nth-child(2)  { transition-delay: 80ms; }
[data-stagger].is-visible > *:nth-child(3)  { transition-delay: 160ms; }
[data-stagger].is-visible > *:nth-child(4)  { transition-delay: 240ms; }
[data-stagger].is-visible > *:nth-child(5)  { transition-delay: 320ms; }
[data-stagger].is-visible > *:nth-child(6)  { transition-delay: 400ms; }
[data-stagger].is-visible > *:nth-child(7)  { transition-delay: 480ms; }
[data-stagger].is-visible > *:nth-child(8)  { transition-delay: 560ms; }
[data-stagger].is-visible > *:nth-child(9)  { transition-delay: 640ms; }
[data-stagger].is-visible > *:nth-child(10) { transition-delay: 720ms; }

/* Hero stagger — faster */
.hero-anim {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}
.hero-anim.hero-anim--badge  { transition-delay: 100ms; }
.hero-anim.hero-anim--h1     { transition-delay: 220ms; }
.hero-anim.hero-anim--sub    { transition-delay: 360ms; }
.hero-anim.hero-anim--ctas   { transition-delay: 460ms; }
.hero-anim.hero-anim--stats  { transition-delay: 600ms; }
.hero-anim.hero-anim--visual { transition-delay: 300ms; }
.hero-anim.is-visible {
    opacity: 1;
    transform: none;
}

/* Section header line draw */
.section-header .eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin: 0.6rem auto 0;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.7s 0.2s var(--ease-spring);
}
.section-header.is-visible .eyebrow::after {
    transform: scaleX(1);
}

/* Counter elements */
.stat-number, .hero-stat-value {
    transition: opacity 0.5s ease;
}

/* ── 5. Layout Utilities ──────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

/* Linen weave texture — shared mixin via background-image */
:root {
    --linen-weave: repeating-linear-gradient(
            0deg, transparent, transparent 5px,
            rgba(78,110,144,0.04) 5px, rgba(78,110,144,0.04) 6px),
        repeating-linear-gradient(
            90deg, transparent, transparent 5px,
            rgba(78,110,144,0.04) 5px, rgba(78,110,144,0.04) 6px);
}

.section { padding-block: var(--section-py); background: var(--white); }
.section--gray {
    background-color: var(--gray-lightest);
    background-image: var(--linen-weave);
}
.section--navy { background: var(--navy-dark); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.9rem;
}
.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 0.9rem;
}
.section-header p {
    max-width: 580px;
    margin-inline: auto;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.section--navy .section-header h2,
.section--navy .section-header p { color: var(--white); }
.section--navy .section-header p { opacity: 0.75; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.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;
}

/* ── 6. Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.85rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.012em;
    line-height: 1;
    border-radius: 6px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on all primary buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-15deg);
    opacity: 0;
    transition: opacity 0.1s;
}
.btn:hover::before {
    opacity: 1;
    animation: shimmerSweep 0.55s var(--ease-out) forwards;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 2px 8px rgba(78,110,144,0.2);
}
.btn-primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-navy);
}
.btn-primary:active { transform: translateY(0); }

.btn-gold {
    background: var(--gold);
    color: var(--navy-deeper);
    border-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(205,180,188,0.25);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--navy-deeper);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-white {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.16);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: rgba(78,110,144,0.3);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-navy);
}

.btn-sm  { padding: 0.6rem 1.25rem; font-size: 0.82rem; border-radius: 5px; }
.btn-lg  { padding: 0.9rem 2.25rem; font-size: 1rem; }

.btn-quote {
    background: transparent;
    color: var(--navy) !important;
    border: 1.5px solid rgba(78,110,144,0.35);
    padding: 0.5rem 1.25rem;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all var(--transition);
}
.btn-quote:hover {
    background: var(--navy);
    color: var(--white) !important;
    border-color: var(--navy);
    box-shadow: var(--shadow-navy);
}

/* ── 7. Header ────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(78,110,144,0.08);
    background: rgba(255,255,255,0.99);
}
.site-header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent 100%);
    opacity: 0.55;
    pointer-events: none;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 2rem;
}

.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img,
.site-logo .custom-logo-link img,
.site-logo .custom-logo { height: 52px; width: auto; max-width: 200px; }
.site-logo .custom-logo-link { display: flex; align-items: center; }
.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
}
.logo-text span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-menu li a {
    display: block;
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 6px;
    transition: all var(--transition);
    position: relative;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s var(--ease-spring);
}
.nav-menu li a:hover { color: var(--navy); }
.nav-menu li a:hover::after { transform: scaleX(1); }
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
    color: var(--navy);
    font-weight: 600;
}
.nav-menu li.current-menu-item > a::after,
.nav-menu li.current_page_item > a::after { transform: scaleX(1); }

.site-nav .btn-quote { margin-left: 0.85rem; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    border-radius: 6px;
    transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-lightest); }
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s var(--ease-spring);
    transform-origin: center;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--white);
    z-index: 999;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    border-top: 3px solid var(--gold);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-spring);
}
.nav-mobile.is-open { opacity: 1; transform: translateY(0); }
.nav-mobile-menu { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.nav-mobile-menu li a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--gray-light);
    transition: color var(--transition), padding-left var(--transition);
}
.nav-mobile-menu li a:hover { color: var(--navy); padding-left: 0.75rem; }
.nav-mobile .btn { width: 100%; justify-content: center; }

/* ── 8. Hero ──────────────────────────────────────────────── */
.hero {
    background-color: var(--navy-deeper);
    background-image: var(--linen-weave);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 90% at 75% 40%, rgba(78,110,144,0.22) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    padding-block: 120px 72px;
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.75rem;
}

.hero-inner h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}
.hero-inner h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Stats bar */
.hero-facts {
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}
.hero-facts::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205,180,188,0.6), transparent);
    pointer-events: none;
}
.hero-facts-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hero-fact {
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-fact:last-child { border-right: none; }
.hero-fact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}
.hero-fact-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.62);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hv-cert {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(205,180,188,0.25);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    z-index: 2;
}

/* Three-arch motif — mirrors the MAG Linen logo */
.hv-arches {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 2.5rem 2rem 0;
    gap: 0;
}
.hv-arch {
    width: 88px;
    height: 60px;
    border-radius: 44px 44px 0 0;
    margin-inline: -8px;
    flex-shrink: 0;
}
.hv-arch--rose { background: rgba(205,180,188,0.5);  }
.hv-arch--blue { background: rgba(78,110,144,0.75);  z-index: 1; }
.hv-arch--sky  { background: rgba(139,176,204,0.5); }

/* Product line strips */
.hv-towels {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
}
.hv-towel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.05) 2px, rgba(255,255,255,0.05) 3px);
}
.hv-towel--1 { background-color: rgba(255,255,255,0.10); }
.hv-towel--2 { background-color: rgba(205,180,188,0.15); }
.hv-towel--3 { background-color: rgba(139,176,204,0.12); }

.hv-towel-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
}
.hv-towel-gsm {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: rgba(255,255,255,0.55);
}

.hv-badge {
    margin: 0 1.75rem 1.75rem;
    display: inline-block;
    align-self: flex-start;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(139,176,204,0.25);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78,110,144,0.1);
    border: 1px solid rgba(78,110,144,0.25);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-left-inner h1 {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy-deeper);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.hero-left-inner h1 strong {
    color: var(--navy);
    font-weight: 600;
}

.hero-rule {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* Scoped to split-hero variant (light background) to avoid overriding dark-hero .hero-sub */
.hero-left-inner .hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 420px;
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

/* Info strip below hero */
.hero-strip {
    background: var(--navy-deeper);
    padding: 1rem 0;
}
.hero-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
}
.hero-strip-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.03em;
}
.hero-strip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── 9. Trust Bar ─────────────────────────────────────────── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--gray-light);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 1.75rem;
    border-right: 1px solid var(--gray-light);
    transition: background var(--transition);
    cursor: default;
}
.trust-item:hover { background: var(--gray-lightest); }

.trust-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(78,110,144,0.2);
    transition: transform var(--transition), box-shadow var(--transition);
}
.trust-item:hover .trust-icon {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78,110,144,0.25);
}
.trust-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; }

.trust-text-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 0.2rem;
}
.trust-text-value {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* ── 9b. Wholesale Pricing Band ──────────────────────────── */
.pricing-band {
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}
.pricing-band-inner {
    display: grid;
    grid-template-columns: auto 1px repeat(4, 1fr);
    align-items: center;
    gap: 0;
}
.pricing-band-intro {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem 2rem 1.75rem 0;
}
.pricing-band-headline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    max-width: 180px;
}
.pricing-band-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-light);
    margin-inline: 2rem;
}
.pricing-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 0.4rem;
    border-left: 1px solid var(--gray-light);
    transition: background var(--transition);
}
.pricing-band-item:hover { background: var(--gray-lightest); }
.pricing-band-icon {
    width: 36px;
    height: 36px;
    background: rgba(78,110,144,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 0.2rem;
    flex-shrink: 0;
}
.pricing-band-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.pricing-band-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-medium);
}
.pricing-band-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* ── 10. Product Cards ────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.products-grid--asymmetric {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all 0.4s var(--ease-spring);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
}
.product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}

.product-card-image {
    aspect-ratio: 1 / 1;
    background-color: var(--gray-lightest);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(78,110,144,0.05) 5px, rgba(78,110,144,0.05) 6px),
        repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(78,110,144,0.05) 5px, rgba(78,110,144,0.05) 6px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }

/* Soft gradient overlay on hover */
.product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,47,68,0.72) 0%, rgba(45,74,98,0.3) 45%, transparent 75%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.product-card:hover .product-card-image::after { opacity: 1; }

.product-icon-placeholder {
    width: 72px;
    height: 72px;
    transition: transform 0.4s var(--ease-spring);
}
.product-card:hover .product-icon-placeholder { transform: scale(1.1); }
.product-icon-placeholder svg { width: 100%; height: 100%; }

.product-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--navy-dark);
    color: var(--gold-light);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 4px;
    z-index: 2;
}

.product-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}
.product-card-meta {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.product-card-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.22rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.tag-premium { background: rgba(78,110,144,0.1); color: var(--navy); }
.tag-economy { background: rgba(205,180,188,0.15); color: var(--rose-dark); }

/* ── Featured card (first in asymmetric grid) ─────────────── */
.product-card--featured {
    background: var(--navy-dark);
    border-color: transparent;
    box-shadow: var(--shadow-navy);
}
.product-card--featured .product-card-image {
    aspect-ratio: 4 / 5;
    background-color: var(--navy-deeper);
}
.product-card--featured .product-card-body h3 {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.02em;
}
.product-card--featured .product-card-body p {
    color: rgba(255,255,255,0.62);
}
.product-card--featured .product-card-badge {
    background: var(--gold);
    color: var(--navy-deeper);
    font-weight: 800;
}
.product-card--featured .tag-premium { background: rgba(139,176,204,0.18); color: var(--gold-light); }
.product-card--featured .tag-economy { background: rgba(205,180,188,0.18); color: var(--gold); }
.product-card--featured .btn-outline-navy {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
.product-card--featured .btn-outline-navy:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
}
.product-card--featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26,47,68,0.45);
}

/* ── 11. Industries Grid ──────────────────────────────────── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--card-radius);
    padding: 1.75rem 1rem;
    text-align: center;
    transition: all 0.35s var(--ease-spring);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}
/* Animated gold border sweep on hover */
.industry-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-spring);
}
.industry-card:hover {
    border-color: transparent;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-navy);
}
.industry-card:hover::before { transform: scaleX(1); }

.industry-icon {
    width: 52px;
    height: 52px;
    background: var(--gray-lightest);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.35s var(--ease-spring);
    flex-shrink: 0;
}
.industry-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.industry-card:hover .industry-icon {
    background: rgba(205,180,188,0.2);
    color: var(--gold);
    transform: scale(1.08);
}

.industry-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}
.industry-card:hover .industry-name { color: var(--white); }

/* ── 12. Why MAG Section ──────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* Connecting line between items */
.why-grid::before {
    content: '';
    position: absolute;
    top: 53px;
    left: calc(33.33% + 24px);
    right: calc(33.33% + 24px);
    height: 1px;
    background: linear-gradient(90deg, var(--gray-light), var(--gray), var(--gray-light));
    display: block;
}

.why-item {
    text-align: center;
    padding: 2.5rem 1.75rem;
    border-radius: var(--card-radius);
    background: var(--white);
    border: 1px solid var(--gray-light);
    transition: all 0.4s var(--ease-spring);
    position: relative;
}
.why-item:hover {
    border-color: rgba(78,110,144,0.15);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Step number */
.why-item::before {
    content: attr(data-num);
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-lightest);
    line-height: 1;
    letter-spacing: -0.04em;
    transition: color 0.3s ease;
}
.why-item:hover::before { color: rgba(78,110,144,0.06); }

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(78,110,144,0.22);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
    position: relative;
}
.why-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.why-item:hover .why-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 14px 30px rgba(78,110,144,0.3);
}

.why-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.why-item p { font-size: 0.875rem; line-height: 1.75; color: var(--text-secondary); }

/* ── 13. CTA Banner ───────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(-45deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--navy-dark) 100%);
    background-size: 400% 400%;
    animation: heroGradient 12s ease infinite;
    padding-block: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(205,180,188,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}
.cta-banner h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 500px; margin-inline: auto; margin-bottom: 2.25rem; font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 14. Footer ───────────────────────────────────────────── */
.site-footer {
    background: var(--navy-deeper);
    color: rgba(255,255,255,0.7);
    padding-top: 72px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .footer-logo { display: block; margin-bottom: 1rem; }
.footer-brand .footer-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}
.footer-brand .footer-logo-text span { color: var(--gold); }
.footer-tagline {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(205,180,188,0.3);
    padding: 0.32rem 0.8rem;
    border-radius: 4px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 0.7rem; }

.footer-heading {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s var(--ease-spring);
    flex-shrink: 0;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { width: 12px; }

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.footer-contact p svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; stroke: var(--gold); fill: none; stroke-width: 1.75; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.25rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
}

/* ── 15. Breadcrumbs ──────────────────────────────────────── */
.mag-breadcrumbs {
    background: var(--gray-lightest);
    border-bottom: 1px solid var(--gray-light);
    padding: 0.8rem 0;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
    font-size: 0.8rem;
    color: var(--gray-dark);
}
.breadcrumb-list a { color: var(--navy); font-weight: 500; }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-item.current span { color: var(--gray-medium); }
.breadcrumb-sep { color: var(--gray-medium); margin-inline: 0.1rem; }

/* ── 16. Page Hero ────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, var(--navy-deeper) 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(205,180,188,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 580px; margin-bottom: 0; }

/* ── 17. Content Pages ────────────────────────────────────── */
.page-content {
    max-width: var(--container);
    margin-inline: auto;
    padding: 72px 24px;
}
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
    max-width: var(--container);
    margin-inline: auto;
    padding: 72px 24px;
}

/* ── 18. Product Single ───────────────────────────────────── */
.product-single-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container);
    margin-inline: auto;
    padding: 72px 24px;
}
.product-single-image {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    aspect-ratio: 4/3;
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.product-single-image img { width: 100%; height: 100%; object-fit: cover; }
.product-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}
.product-single-info h1 { color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.03em; }
.product-single-info p { font-size: 1.05rem; line-height: 1.75; }
.product-lines { display: flex; gap: 0.75rem; margin: 1.5rem 0; flex-wrap: wrap; }
.product-line-badge {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 600;
}
.product-line-badge.premium { background: var(--navy); color: var(--white); }
.product-line-badge.economy { background: var(--gold); color: var(--navy-deeper); }

.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; border-radius: var(--card-radius); overflow: hidden; }
.comparison-table th {
    background: var(--navy);
    color: var(--white);
    padding: 0.9rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.84rem;
}
.comparison-table th:first-child { background: var(--navy-dark); }
.comparison-table td { padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--gray-light); color: var(--text-secondary); }
.comparison-table tr:nth-child(even) td { background: var(--gray-lightest); }
.comparison-table td:first-child { font-weight: 600; color: var(--text-primary); }

.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.spec-item {
    background: var(--gray-lightest);
    border: 1px solid var(--gray-light);
    border-radius: var(--card-radius-sm);
    padding: 1.25rem;
    transition: all var(--transition);
}
.spec-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.spec-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 0.4rem; display: block; }
.spec-value { font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }

/* ── 19. Industry Single ──────────────────────────────────── */
.industry-single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    max-width: var(--container);
    margin-inline: auto;
    padding: 72px 24px;
    align-items: start;
}
.industry-content h2 { color: var(--navy); margin-bottom: 1rem; margin-top: 2rem; letter-spacing: -0.02em; }
.industry-content h2:first-child { margin-top: 0; }
.industry-content ul { list-style: none; margin-bottom: 1.5rem; }
.industry-content ul li {
    padding: 0.55rem 0 0.55rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}
.industry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.sidebar-quote-box {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--card-radius);
    padding: 2rem;
    position: sticky;
    top: calc(var(--header-h) + 24px);
    box-shadow: var(--shadow-navy);
}
.sidebar-quote-box h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.sidebar-quote-box p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ── 20. About Page ───────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-image-placeholder {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    aspect-ratio: 4/3;
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 0.9rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); text-align: center; }
.stat-item {
    padding: 2.75rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    animation: counterUp 0.6s var(--ease-spring) both;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; }

.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.advantage-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--card-radius);
    padding: 1.75rem;
    border-top: 3px solid var(--gold);
    transition: all 0.35s var(--ease-spring);
}
.advantage-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold) var(--gray-light) var(--gray-light); }
.advantage-item h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1rem; letter-spacing: -0.02em; }
.advantage-item p { font-size: 0.875rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-card { background: var(--gray-lightest); border-radius: var(--card-radius); overflow: hidden; text-align: center; transition: all 0.35s var(--ease-spring); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar { width: 100%; aspect-ratio: 1; background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%); }
.team-info { padding: 1.25rem; }
.team-info h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-info p { font-size: 0.82rem; color: var(--gray-dark); margin: 0; }

/* ── 21. Contact Page ─────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    max-width: var(--container);
    margin-inline: auto;
    padding: 72px 24px;
    align-items: start;
}
.form-notice {
    padding: 1rem 1.25rem;
    border-radius: var(--card-radius-sm);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
    outline: none;
}
.form-notice--success {
    background: rgba(78,110,144,0.08);
    border: 1px solid rgba(78,110,144,0.3);
    color: var(--navy-dark);
}
.form-notice--error {
    background: rgba(220,38,38,0.06);
    border: 1px solid rgba(220,38,38,0.25);
    color: #991b1b;
}
.form-notice a { color: inherit; text-decoration: underline; }

.mag-form label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.mag-form label span.required { color: #DC2626; }
.mag-form input[type="text"],
.mag-form input[type="email"],
.mag-form input[type="tel"],
.mag-form select,
.mag-form textarea {
    width: 100%;
    padding: 0.72rem 0.95rem;
    border: 1.5px solid var(--gray);
    border-radius: 7px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}
.mag-form input:focus,
.mag-form select:focus,
.mag-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(78,110,144,0.1);
}
.mag-form textarea { resize: vertical; min-height: 120px; }
.mag-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-top: 0.5rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); flex-shrink: 0; }

.contact-info-sidebar {
    background: var(--gray-lightest);
    border: 1px solid var(--gray-light);
    border-radius: var(--card-radius);
    padding: 2rem;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}
.contact-info-sidebar h3 { font-size: 1rem; color: var(--navy); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold); }
.contact-detail { display: flex; gap: 0.85rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-detail-icon { width: 36px; height: 36px; background: var(--navy); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-detail-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.contact-detail-text .label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-dark); display: block; margin-bottom: 0.2rem; }
.contact-detail-text .value { font-size: 0.875rem; color: var(--text-primary); font-weight: 500; }
.contact-detail-text a { color: var(--navy); }
.contact-detail-text a:hover { color: var(--gold); }
.hours-note { background: rgba(78,110,144,0.06); border-left: 3px solid var(--navy); padding: 0.8rem 1rem; font-size: 0.82rem; color: var(--text-secondary); border-radius: 0 6px 6px 0; margin-top: 1.25rem; }

/* ── 22. 404 Page ─────────────────────────────────────────── */
.error-404-wrap {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 24px;
}
.error-404-code { font-size: 6rem; font-weight: 900; color: var(--gray-light); line-height: 1; margin-bottom: 1rem; }
.error-404-wrap h1 { margin-bottom: 1rem; }
.error-404-wrap p { margin-bottom: 2rem; max-width: 480px; margin-inline: auto; }

/* ── 23. Back to Top ──────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-spring);
    z-index: 900;
    box-shadow: var(--shadow-navy);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); color: var(--navy-deeper); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.back-to-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── 24. Typography utilities ─────────────────────────────── */
.text-navy   { color: var(--navy) !important; }
.text-gold   { color: var(--gold) !important; }
.text-white  { color: var(--white) !important; }
.text-muted  { color: var(--gray-dark) !important; }
.fw-700      { font-weight: 700 !important; }
.fw-800      { font-weight: 800 !important; }
.text-center { text-align: center; }
.mb-0        { margin-bottom: 0 !important; }

.gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── 25. WooCommerce ──────────────────────────────────────── */
.woocommerce-notices-wrapper { padding-inline: 24px; max-width: var(--container); margin-inline: auto; }

/* ── 26. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --section-py: 64px; }
    .hero-inner { padding-block: 80px 56px; }
    .hero-facts-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-fact { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .hv-arch { width: 68px; height: 46px; border-radius: 34px 34px 0 0; }
    /* Pricing band: 2-column grid on tablet */
    .pricing-band-inner { grid-template-columns: 1fr 1fr; gap: 0; }
    .pricing-band-intro { grid-column: 1 / -1; padding: 1.5rem 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .pricing-band-divider { display: none; }
    .pricing-band-item:nth-child(odd) { border-left: none; }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2n) { border-right: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .product-single-hero { grid-template-columns: 1fr; gap: 2rem; }
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .story-image-placeholder { aspect-ratio: 16/7; }
    .content-with-sidebar,
    .industry-single-layout,
    .contact-layout { grid-template-columns: 1fr; }
    .sidebar-quote-box,
    .contact-info-sidebar { position: static; }
}

@media (max-width: 768px) {
    :root { --section-py: 52px; --header-h: 64px; }
    .site-nav { display: none; }
    .hamburger { display: flex; }
    .nav-mobile { display: block; }
    .hero-inner { padding-block: 64px 48px; }
    .hero-inner h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
    .hero-facts-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; text-align: center; }
    /* Pricing band: single column on mobile */
    .pricing-band-inner { grid-template-columns: 1fr 1fr; }
    .pricing-band-intro { flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; }
    .pricing-band-headline { font-size: 0.85rem; max-width: none; }
    .trust-bar-inner { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 1rem; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(2n) { border-right: none; }
    .advantage-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .specs-grid { grid-template-columns: 1fr 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.82rem; }
    .comparison-table th, .comparison-table td { padding: 0.65rem 0.75rem; }
    .cta-banner-actions { flex-direction: column; align-items: center; }
    .cta-banner-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    .back-to-top { bottom: 1.25rem; right: 1.25rem; }

    /* Disable stagger on mobile for performance */
    [data-stagger] > *,
    [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .trust-bar-inner { grid-template-columns: 1fr; }
    .trust-item { border-right: none; }
    .hero-fact-value { font-size: 1.6rem; }
    .hero-fact { padding: 1.1rem 1.25rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .hero { animation: none; }
    .cta-banner { animation: none; }
    [data-anim], [data-stagger] > *, .hero-anim { opacity: 1 !important; transform: none !important; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   DARK PREMIUM THEME — v2.7.1
   Playfair Display + DM Sans · Deep Navy · Steel Blue · Powder · Blush
   All class names aligned with index.html reference design
═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --font:         'DM Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --bg:           #0B1520;
    --bg-2:         #0E1B2C;
    --bg-card:      #112030;
    --bg-card-hov:  #152840;
    --steel:        #4E6E90;
    --steel-lt:     #6B8EAD;
    --powder:       #8BB0CC;
    --blush:        #CDB4BC;
    --text-body:    #EDF4FB;
    --text-muted:   #7A9EC0;
    --text-dim:     #4A6A88;
    --border-dark:  rgba(78,110,144,.18);
    --ease:         cubic-bezier(.4,0,.2,1);
}

/* ── Base ── */
body { background: var(--bg); color: var(--text-body); font-family: var(--font); }
h1,h2,h3,h4,h5,h6 { color: var(--text-body); }
p { color: var(--text-muted); }

/* ── Shared typography ── */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.14;
    color: var(--text-body);
}
.section-title em { font-style: italic; color: var(--powder); }
.section-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 52ch;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--powder);
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--powder);
    flex-shrink: 0;
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background .25s var(--ease), transform .22s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--steel); color: var(--text-body) !important; }
.btn-primary:hover { background: var(--powder); box-shadow: 0 8px 28px rgba(78,110,144,.4); }
.btn-ghost { background: transparent; color: var(--text-body) !important; border: 1px solid rgba(237,244,251,.28); }
.btn-ghost:hover { border-color: var(--powder); color: var(--powder) !important; }
.btn-cta-white { background: var(--text-body); color: var(--steel) !important; }
.btn-cta-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.btn-cta-ghost { background: transparent; color: var(--text-body) !important; border: 1px solid rgba(237,244,251,.38); }
.btn-cta-ghost:hover { background: rgba(237,244,251,.08); border-color: rgba(237,244,251,.7); }

/* ── Logo ── */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: .03em;
    line-height: 1.2;
}
.logo-sub {
    display: block;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--steel-lt);
}

/* ── Header ── */
.site-header {
    background: rgba(11,21,32,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
    background: rgba(11,21,32,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--border-dark);
}
.header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    height: 76px;
    gap: 2rem;
}

/* ── Nav alignment — inline styles take priority, CSS as backup ── */
.site-nav {
    display: flex !important;
    align-items: center !important;
    align-self: center !important;
    height: auto !important;
    gap: 36px;
}
#site-nav ul li a,
.mag-nav-menu li a {
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    color: #7A9EC0 !important;
    background: none !important;
    border: none !important;
    padding: 4px 0 !important;
    height: auto !important;
    line-height: 1 !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: relative;
}
#site-nav ul li a::after,
.mag-nav-menu li a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important; left: 0 !important;
    width: 0 !important; height: 1px !important;
    background: #8BB0CC !important;
    transition: width .3s ease !important;
    transform: none !important;
}
#site-nav ul li a:hover,
.mag-nav-menu li a:hover { color: #8BB0CC !important; }
#site-nav ul li a:hover::after,
.mag-nav-menu li a:hover::after { width: 100% !important; }
#site-nav ul,
.mag-nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 36px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.mag-btn-cta:hover {
    background: #8BB0CC !important;
    color: #EDF4FB !important;
    box-shadow: 0 8px 28px rgba(78,110,144,.4) !important;
    transform: translateY(-2px) !important;
}

/* ── Hamburger ── */
.hamburger span { background: var(--text-body); }
.hamburger:hover { background: rgba(78,110,144,.15); }

/* ── Mobile drawer ── */
.nav-mobile {
    background: rgba(11,21,32,.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top-color: var(--border-dark);
}
.nav-mobile-menu li a { color: var(--text-muted); border-bottom-color: var(--border-dark); }
.nav-mobile-menu li a:hover { color: var(--powder); }

/* ── Hero ── */
.hero {
    background-color: var(--bg);
    margin-top: calc(-1 * var(--header-h));
    position: relative;
}
.hero-inner { padding-top: calc(var(--header-h) + 80px); padding-bottom: 124px; }
.hero-eyebrow { color: var(--text-muted); }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--text-body);
}
.hero h1 em { font-style: italic; color: var(--powder); }
.hero-sub { font-size: 15px; font-weight: 300; color: var(--text-muted); max-width: 52ch; line-height: 1.8; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Ticker ── */
.ticker {
    overflow: hidden;
    background: var(--steel);
    height: 46px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.ticker-track {
    display: flex;
    animation: tickerScroll 34s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(237,244,251,.82);
    flex-shrink: 0;
}
.ticker-pip {
    width: 4px; height: 4px;
    background: rgba(237,244,251,.36);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ── Products ── */
.mag-products {
    padding: 124px 0;
    background: var(--bg);
    position: relative;
}
.mag-products::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}
.products-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 72px;
    flex-wrap: wrap;
}
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-dark);
    border: 1px solid var(--border-dark);
}
.prod-card {
    background: var(--bg-card);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: background .3s var(--ease);
}
.prod-card:hover { background: var(--bg-card-hov); }
.prod-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-bg {
    position: absolute; inset: 0;
    transition: transform .65s var(--ease);
}
.prod-card:hover .prod-bg { transform: scale(1.05); }
.prod-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,21,32,.88) 0%, rgba(11,21,32,.18) 55%, transparent 100%);
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.prod-card:hover .prod-overlay { opacity: 1; }
.prod-hover-label {
    position: absolute;
    bottom: 22px; left: 22px;
    color: var(--text-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.prod-card:hover .prod-hover-label { opacity: 1; transform: translateY(0); }
.prod-icon { position: relative; z-index: 1; }
.prod-info {
    padding: 24px;
    border-top: 1px solid var(--border-dark);
}
.prod-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 8px;
}
.prod-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.62;
    margin-bottom: 14px;
}
.prod-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.tag-p { background: rgba(78,110,144,.16); color: var(--powder); border: 1px solid rgba(78,110,144,.3); }
.tag-e { background: rgba(205,180,188,.1); color: #DEC8CE; border: 1px solid rgba(205,180,188,.22); }

/* ── About ── */
.mag-about {
    padding: 124px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.mag-about::after {
    content: '';
    position: absolute;
    bottom: -180px; right: -200px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,110,144,.055) 0%, transparent 65%);
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
.about-visual { position: relative; }
.about-canvas {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(148deg, #0E2038 0%, #142840 50%, #0C1B30 100%);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    position: relative;
}
.about-badge {
    position: absolute;
    bottom: -18px; right: -18px;
    background: var(--steel);
    padding: 26px 30px;
    border: 1px solid rgba(139,176,204,.2);
}
.about-badge-val {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--text-body);
    line-height: 1;
    display: block;
}
.about-badge-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(237,244,251,.6);
    margin-top: 5px;
    display: block;
}
.about-body { padding: 6px 0; }
.about-checks { display: flex; flex-direction: column; gap: 17px; margin: 30px 0 42px; }
.about-check { display: flex; align-items: flex-start; gap: 14px; }
.chk-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--steel-lt); }
.chk-text { font-size: 14.5px; font-weight: 300; color: var(--text-muted); line-height: 1.62; }
.chk-text strong { font-weight: 500; color: var(--text-body); }

/* ── Industries ── */
.mag-industries {
    padding: 124px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.mag-industries::before {
    content: '';
    position: absolute;
    top: -160px; right: -220px;
    width: 580px; height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,110,144,.07) 0%, transparent 65%);
    pointer-events: none;
}
.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-dark);
}
.ind-card {
    background: var(--bg-2);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background .3s var(--ease);
    cursor: pointer;
}
.ind-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--steel), var(--powder));
    transition: width .5s var(--ease);
}
.ind-card:hover { background: rgba(14,27,44,.95); }
.ind-card:hover::after { width: 100%; }
.ind-icon {
    width: 44px; height: 44px;
    color: var(--steel-lt);
    margin-bottom: 24px;
    transition: color .3s var(--ease);
    display: block;
}
.ind-card:hover .ind-icon { color: var(--powder); }
.ind-name {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 10px;
}
.ind-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.72;
    margin: 0;
}

/* ── Why ── */
.mag-why {
    padding: 124px 0;
    background: var(--bg);
    position: relative;
}
.mag-why::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}
.why-hdr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 80px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-dark);
}
.why-card {
    background: var(--bg-card);
    padding: 44px 36px;
    transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    background: var(--steel);
    transition: height .3s var(--ease);
}
.why-card:hover {
    background: var(--bg-card-hov);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    z-index: 1;
}
.why-card:hover::before { height: 2px; }
.why-num {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(78,110,144,.18);
    line-height: 1;
    margin-bottom: 16px;
    transition: color .3s var(--ease);
    display: block;
}
.why-card:hover .why-num { color: rgba(139,176,204,.3); }
.why-title {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 12px;
}
.why-desc {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.74;
    margin: 0;
}

/* ── CTA Banner ── */
.mag-cta {
    padding: 120px 0;
    background: var(--steel);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.mag-cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(139,176,204,.22) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 50%, rgba(11,21,32,.32) 0%, transparent 50%);
    pointer-events: none;
}
.mag-cta::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,.018) 60px, rgba(255,255,255,.018) 61px);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(237,244,251,.55);
    margin-bottom: 20px;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.18;
    margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: rgba(237,244,251,.72); }
.cta-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(237,244,251,.68);
    margin: 0 auto 48px;
    line-height: 1.82;
    max-width: 46ch;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-contact-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 52px;
    flex-wrap: wrap;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(237,244,251,.68);
}
.cta-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .7; }

/* ── Footer ── */
.site-footer { background: #070E18; border-top: 1px solid var(--border-dark); }
.footer-heading { border-bottom-color: var(--steel); color: var(--powder); }
.footer-brand p { color: rgba(122,158,192,.5); }
.footer-links a { color: rgba(122,158,192,.5); }
.footer-links a:hover { color: var(--powder); }
.footer-contact p { color: rgba(122,158,192,.5); }
.footer-contact a { color: rgba(122,158,192,.5); }
.footer-contact a:hover { color: var(--powder); }
.footer-bottom { color: rgba(122,158,192,.3); }

/* ── Back to top ── */
.back-to-top { background: var(--steel); color: var(--text-body); border-radius: 0; }
.back-to-top:hover { background: var(--steel-lt); }

/* ── Breadcrumbs ── */
.mag-breadcrumbs { background: var(--bg-2); border-bottom-color: var(--border-dark); }

/* ── Responsive ── */
@media (max-width: 960px) {
    .why-hdr { grid-template-columns: 1fr; gap: 20px; }
    .products-hdr { flex-direction: column; align-items: flex-start; }
    .products-hdr .section-desc { text-align: left; }
}
@media (max-width: 900px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 64px; }
    .about-badge { right: 0; }
}
@media (max-width: 768px) {
    .mag-products, .mag-about, .mag-industries, .mag-why { padding: 84px 0; }
    .mag-cta { padding: 80px 0; }
    .ind-card { padding: 36px 28px; }
    .why-card { padding: 36px 28px; }
    /* Nav: must use !important to beat the dark-theme display:flex !important rule */
    .site-nav { display: none !important; }
    .hamburger { display: flex !important; }
    .mag-btn-cta { display: none !important; }
    /* CTA grid: stack earlier */
    .cta-contact-grid { gap: 20px; flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
    .prod-grid { grid-template-columns: 1fr; }
    .ind-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 32px 24px; }
    .cta-contact-grid { flex-direction: column; gap: 16px; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGE STYLES — About & Contact
   v2.9.0
═══════════════════════════════════════════════════════════════════════════ */

/* ── Page Hero (Inner Pages) ── */
.page-hero-mag {
    background: var(--bg);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-dark);
}
.page-hero-mag::before {
    content: '';
    position: absolute;
    top: -100px; left: -200px;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,110,144,.06) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero-mag::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -150px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,176,204,.04) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero-mag .container { position: relative; z-index: 1; }
.page-hero-sm { padding: 110px 0 72px; }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-body);
    margin: 20px 0 24px;
}
.page-hero-title em { font-style: italic; color: var(--powder); }
.page-hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 50ch;
    margin-bottom: 40px;
}

/* ── Page Stats Strip ── */
.page-stats { background: var(--bg-2); border-bottom: 1px solid var(--border-dark); }
.page-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.page-stat {
    padding: 52px 32px;
    border-right: 1px solid var(--border-dark);
    text-align: center;
}
.page-stat:last-child { border-right: none; }
.page-stat-val {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text-body);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}
.page-stat-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── About — Story Section ── */
.mag-story {
    padding: 124px 0;
    background: var(--bg-2);
    position: relative;
}
.mag-story::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

/* ── About — Advantages Section ── */
.mag-adv {
    padding: 124px 0;
    background: var(--bg);
    position: relative;
}
.mag-adv::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}
.section-hdr-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

/* ── Contact — Main Layout ── */
.mag-contact-section {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
}
.contact-form-col h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 10px;
}
.contact-form-col > p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ── Dark Form Styling ── */
.mag-form { display: flex; flex-direction: column; gap: 22px; }
.mag-form label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--powder);
    margin-bottom: 9px;
}
.mag-form .required { color: var(--blush); }
.mag-form input[type="text"],
.mag-form input[type="email"],
.mag-form input[type="tel"],
.mag-form select,
.mag-form textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    color: var(--text-body);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 300;
    padding: 14px 18px;
    outline: none;
    transition: border-color .25s var(--ease), background .25s var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
.mag-form input:focus,
.mag-form select:focus,
.mag-form textarea:focus {
    border-color: var(--steel);
    background: var(--bg-card-hov);
}
.mag-form input::placeholder,
.mag-form textarea::placeholder { color: var(--text-dim); opacity: 1; }
.mag-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6A88' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.mag-form select option { background: #112030; color: #EDF4FB; }
.mag-form textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-row { display: flex; flex-direction: column; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    padding: 13px 16px;
    border: 1px solid var(--border-dark);
    background: var(--bg-card);
    transition: border-color .25s var(--ease), background .25s var(--ease);
    line-height: 1;
}
.checkbox-item:hover { border-color: var(--steel-lt); background: var(--bg-card-hov); }
.checkbox-item input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--steel);
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}
.mag-form button[type="submit"] { align-self: flex-start; cursor: pointer; }
.form-notice {
    padding: 18px 24px;
    font-size: 13.5px;
    font-weight: 300;
    border-left: 3px solid;
    margin-bottom: 28px;
    line-height: 1.6;
}
.form-notice--success { background: rgba(78,110,144,.12); border-color: var(--steel); color: var(--powder); }
.form-notice--error { background: rgba(205,180,188,.1); border-color: var(--blush); color: var(--blush); }
.form-notice--error a { color: var(--blush); text-decoration: underline; }

/* ── Contact Info Card ── */
.contact-info-col { padding-top: 6px; }
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    padding: 48px 40px;
}
.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}
.cinfo-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.cinfo-icon {
    width: 42px;
    height: 42px;
    background: rgba(78,110,144,.1);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--steel-lt);
}
.cinfo-icon svg { width: 18px; height: 18px; }
.cinfo-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: block;
    margin-bottom: 5px;
}
.cinfo-val {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.75;
    display: block;
}
.cinfo-val a { color: var(--text-body); text-decoration: none; transition: color .2s; }
.cinfo-val a:hover { color: var(--powder); }
.cinfo-hours {
    background: rgba(78,110,144,.07);
    border: 1px solid var(--border-dark);
    padding: 20px 22px;
    margin-top: 6px;
}
.cinfo-hours-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--powder);
    display: block;
    margin-bottom: 12px;
}
.cinfo-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.cinfo-wholesale-note {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-dark);
}
.cinfo-wholesale-note p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.74;
    margin: 0;
}
.cinfo-wholesale-note strong { font-weight: 600; color: var(--text-muted); }

/* ── Inner Page Responsive ── */
@media (max-width: 1024px) {
    .contact-page-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
@media (max-width: 960px) {
    .page-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .contact-page-grid { grid-template-columns: 1fr; gap: 56px; }
    .section-hdr-center { margin-bottom: 60px; }
}
@media (max-width: 768px) {
    .page-hero-mag { padding: 120px 0 80px; }
    .page-hero-sm { padding: 100px 0 64px; }
    .mag-story, .mag-adv { padding: 84px 0; }
    .mag-contact-section { padding: 72px 0; }
    .page-stat { padding: 36px 20px; }
    .contact-info-card { padding: 36px 28px; }
}
@media (max-width: 480px) {
    .page-stats-inner { grid-template-columns: 1fr 1fr; }
    .page-stat { border-right: none; border-bottom: 1px solid var(--border-dark); }
    .form-row-2 { grid-template-columns: 1fr; gap: 22px; }
    .checkbox-group { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS PAGE — Alternating Product Rows
   v2.9.1
═══════════════════════════════════════════════════════════════════════════ */

/* ── Product Rows ── */
.mag-prod-rows {
    padding: 120px 0 100px;
    background: var(--bg-2);
    position: relative;
}
.mag-prod-rows::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}
.prod-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-dark);
}
.prod-row:last-child { border-bottom: none; }
.prod-row-alt { grid-template-columns: 1.5fr 1fr; }
.prod-row-alt .prod-row-visual { order: 2; }
.prod-row-alt .prod-row-info  { order: 1; }
.prod-row-canvas {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: border-color .3s var(--ease);
}
.prod-row-canvas:hover { border-color: rgba(78,110,144,.35); }
.prod-row-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 6px;
}
.prod-row-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 500;
    color: var(--text-body);
    line-height: 1.18;
    margin: 14px 0 18px;
}
.prod-row-desc {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.82;
    margin-bottom: 30px;
}
.prod-spec-list {
    display: flex !important;
    flex-direction: column !important;
    border: none !important;
    outline: none !important;
    border-left: none !important;
    border-right: none !important;
    overflow: visible !important;
    margin-top: 32px;
}
.spec-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(78,110,144,.2) !important;
    border-radius: 0 !important;
    background: transparent !important;
    gap: 24px;
    margin: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
}
.spec-item:first-child { border-top: 1px solid rgba(78,110,144,.2) !important; }
.spec-item:last-child { border-bottom: 1px solid rgba(78,110,144,.2) !important; }
.spec-key {
    font-size: 9.5px !important;
    font-weight: 700 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
    color: #4A6A88 !important;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}
.spec-val {
    font-size: 13px !important;
    font-weight: 300 !important;
    color: #EDF4FB !important;
    text-align: right !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    flex: 1 !important;
}

/* ── Industries Page — 12-card 4-row grid ── */
.ind-grid-12 { grid-template-rows: repeat(4, auto); }

/* ── Product Rows Responsive ── */
@media (max-width: 960px) {
    .prod-row,
    .prod-row-alt { grid-template-columns: 1fr; gap: 40px; }
    .prod-row-alt .prod-row-visual { order: 0; }
    .prod-row-alt .prod-row-info  { order: 0; }
    .prod-row-canvas { aspect-ratio: 16/9; }
    .prod-row { padding: 60px 0; }
}
@media (max-width: 768px) {
    .mag-prod-rows { padding: 80px 0 60px; }
    .prod-row { padding: 48px 0; }
    .prod-row-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .prod-row { padding: 40px 0; }
    .spec-val { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE PRODUCT + INDUSTRY PAGE STYLES
   v2.9.4
═══════════════════════════════════════════════════════════════════════════ */

/* ── Comparison Table ── */
.mag-comparison-wrap { overflow-x: auto; margin: 32px 0 48px; border: 1px solid var(--border-dark); }
.prod-comparison-table { width: 100%; border-collapse: collapse; }
.prod-comparison-table th { padding: 14px 20px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid var(--border-dark); text-align: left; background: var(--bg); }
.prod-comparison-table th:first-child { color: var(--text-muted); width: 28%; }
.prod-comparison-table th:nth-child(2) { color: var(--powder); }
.prod-comparison-table th:nth-child(3) { color: var(--blush); }
.prod-comparison-table td { padding: 14px 20px; font-size: 13.5px; font-weight: 300; color: var(--text-muted); border-bottom: 1px solid var(--border-dark); background: transparent !important; border-left: none !important; border-right: none !important; box-shadow: none !important; }
.prod-comparison-table td:first-child { font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }
.prod-comparison-table td:nth-child(2) { color: #EDF4FB; }
.prod-comparison-table tbody tr:last-child td { border-bottom: none; }
.prod-comparison-table tbody tr:hover td { background: rgba(78,110,144,.05) !important; }

/* ── Single Product Layout ── */
.mag-prod-single { padding: 100px 0; background: var(--bg); position: relative; }
.mag-prod-single::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-dark), transparent); }
.prod-single-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.prod-single-main h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--text-body); margin: 52px 0 20px; line-height: 1.25; }
.prod-single-main h2:first-child { margin-top: 0; }
.prod-single-main p { font-size: 15px; font-weight: 300; color: #7A9EC0; line-height: 1.82; margin-bottom: 16px; }
.prod-single-sidebar { position: sticky; top: 96px; }
.prod-single-sidebar-card { background: var(--steel); padding: 40px 36px; }
.prod-single-sidebar-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-body); margin-bottom: 12px; }
.prod-single-sidebar-card p { font-size: 13.5px; font-weight: 300; color: rgba(237,244,251,.65); line-height: 1.7; margin-bottom: 24px; }
.prod-sidebar-contact { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(237,244,251,.15); display: flex; flex-direction: column; gap: 8px; }
.prod-sidebar-contact-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 300; color: rgba(237,244,251,.5); text-decoration: none; }
.prod-sidebar-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.prod-sidebar-contact-item:hover { color: rgba(237,244,251,.8); }
.prod-other-links { margin-top: 20px; background: var(--bg-card); border: 1px solid var(--border-dark); padding: 28px 24px; }
.prod-other-links h4 { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.prod-other-links a { display: flex; justify-content: space-between; font-size: 13px; font-weight: 300; color: var(--text-muted); text-decoration: none; padding: 9px 0; border-bottom: 1px solid var(--border-dark); transition: color .2s; }
.prod-other-links a:last-child { border-bottom: none; }
.prod-other-links a:hover { color: var(--powder); }
.prod-other-links a::after { content: '→'; opacity: .35; }
.prod-other-links a:hover::after { opacity: .8; }

/* ── Product Applications Grid (2-col on industry cards) ── */
.prod-app-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border-dark); margin-top: 32px; }
.prod-app-grid .ind-card { background: var(--bg-card); }
.prod-app-grid .ind-card:hover { background: var(--bg-card-hov); }

/* ── Industry Hero Icon ── */
.ind-hero-icon { width: 52px; height: 52px; background: rgba(78,110,144,.12); border: 1px solid rgba(78,110,144,.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #6B8EAD; margin-bottom: 24px; }
.ind-hero-icon svg { width: 22px; height: 22px; }

/* ── Single Industry Layout ── */
.mag-ind-single { padding: 100px 0; background: var(--bg); position: relative; }
.mag-ind-single::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-dark), transparent); }
.ind-single-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.ind-single-main h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--text-body); margin: 52px 0 20px; line-height: 1.25; }
.ind-single-main h2:first-child { margin-top: 0; }
.ind-single-main p { font-size: 15px; font-weight: 300; color: #7A9EC0; line-height: 1.82; margin-bottom: 16px; }
.ind-single-main ul { margin: 0 0 28px; padding-left: 0; list-style: none; }
.ind-single-main li { font-size: 14.5px; font-weight: 300; color: #7A9EC0; line-height: 1.7; margin-bottom: 10px; padding-left: 22px; position: relative; }
.ind-single-main li::before { content: '—'; position: absolute; left: 0; color: var(--steel); }
.ind-single-sidebar { position: sticky; top: 96px; }
.ind-sidebar-quote { background: var(--steel); padding: 40px 36px; margin-bottom: 20px; }
.ind-sidebar-quote h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--text-body); margin-bottom: 12px; line-height: 1.3; }
.ind-sidebar-quote p { font-size: 13px; font-weight: 300; color: rgba(237,244,251,.65); line-height: 1.7; margin-bottom: 24px; }
.ind-sidebar-contact { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(237,244,251,.15); display: flex; flex-direction: column; gap: 8px; }
.ind-sidebar-contact-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 300; color: rgba(237,244,251,.5); text-decoration: none; }
.ind-sidebar-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.ind-sidebar-contact-item:hover { color: rgba(237,244,251,.8); }
.ind-other-industries { background: var(--bg-card); border: 1px solid var(--border-dark); padding: 32px 28px; }
.ind-other-industries h4 { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.ind-other-industries a { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 300; color: var(--text-muted); text-decoration: none; padding: 9px 0; border-bottom: 1px solid var(--border-dark); transition: color .2s; }
.ind-other-industries a:last-child { border-bottom: none; }
.ind-other-industries a:hover { color: var(--powder); }
.ind-other-industries a::after { content: '→'; opacity: .3; font-size: 11px; }
.ind-other-industries a:hover::after { opacity: .8; }

/* ── FAQ Section ── */
.mag-faq { padding: 100px 0; background: var(--bg-2); position: relative; }
.mag-faq::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-dark), transparent); }
.faq-grid { display: flex; flex-direction: column; margin-top: 60px; max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--border-dark); padding: 28px 0; }
.faq-item:first-child { border-top: 1px solid var(--border-dark); }
.faq-q { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: #EDF4FB; margin-bottom: 12px; line-height: 1.4; }
.faq-a { font-size: 14.5px; font-weight: 300; color: #7A9EC0; line-height: 1.82; margin: 0; }

/* ── Responsive: Single Pages ── */
@media (max-width: 1024px) {
    .prod-single-grid { grid-template-columns: 1fr 280px; gap: 48px; }
    .ind-single-grid  { grid-template-columns: 1fr 280px; gap: 48px; }
}
@media (max-width: 900px) {
    .prod-single-grid, .ind-single-grid { grid-template-columns: 1fr; }
    .prod-single-sidebar, .ind-single-sidebar { position: static; }
    .prod-app-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .mag-prod-single, .mag-ind-single { padding: 72px 0; }
    .mag-faq { padding: 72px 0; }
    .prod-single-main h2, .ind-single-main h2 { margin-top: 40px; font-size: 1.3rem; }
    .faq-q { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   404 PAGE  v2.9.7
   ═══════════════════════════════════════════════════════════════════════════ */
.mag-404 {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #0B1520;
}
.mag-404::before {
    content: '404';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: clamp(180px, 28vw, 380px);
    font-weight: 700;
    color: #4E6E90;
    opacity: 0.055;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.04em;
}
.mag-404::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(78,110,144,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.error-404-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
    padding: 0 24px;
}
.error-404-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8BB0CC;
    background: rgba(78,110,144,0.1);
    border: 1px solid rgba(78,110,144,0.22);
    border-radius: 100px;
    padding: 7px 20px;
    margin-bottom: 32px;
}
.error-404-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #8BB0CC;
    border-radius: 50%;
    opacity: 0.7;
}
.error-404-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #EDF4FB;
    margin: 0 0 18px;
    line-height: 1.12;
}
.error-404-title em {
    font-style: italic;
    color: #8BB0CC;
}
.error-404-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    color: #7A9EC0;
    line-height: 1.7;
    margin: 0 0 44px;
}
.error-404-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #4E6E90, transparent);
    margin: 0 auto 44px;
    border-radius: 2px;
}
.error-404-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.error-404-actions .btn-404-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0B1520;
    background: #8BB0CC;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.18s ease;
}
.error-404-actions .btn-404-primary:hover {
    background: #EDF4FB;
    transform: translateY(-2px);
}
.error-404-actions .btn-404-outline {
    display: inline-flex;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #8BB0CC;
    background: transparent;
    border: 1px solid rgba(78,110,144,0.35);
    border-radius: 8px;
    padding: 14px 24px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}
.error-404-actions .btn-404-outline:hover {
    border-color: #8BB0CC;
    color: #EDF4FB;
    background: rgba(78,110,144,0.08);
}
.error-404-contact {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #4A6A88;
    line-height: 1.6;
}
.error-404-contact a {
    color: #7A9EC0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.error-404-contact a:hover {
    color: #EDF4FB;
}

@media (max-width: 600px) {
    .error-404-actions { flex-direction: column; align-items: center; }
    .error-404-actions .btn-404-primary,
    .error-404-actions .btn-404-outline { width: 100%; max-width: 280px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS FIXES  v3.0.0
   Addresses audit findings — all breakpoints below patch gaps in v2.7–v2.9.
═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Grid utilities — collapse on mobile ── */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── 2. Touch targets — buttons ── */
@media (max-width: 1024px) {
    .btn-sm  { padding: 0.75rem 1.25rem; }
    .btn-quote { padding: 0.75rem 1.25rem; }
    .nav-menu li a { padding: 0.75rem 0.9rem; }
}

/* ── 3. iOS auto-zoom fix — inputs must be ≥16px ── */
@media (max-width: 768px) {
    .mag-form input[type="text"],
    .mag-form input[type="email"],
    .mag-form input[type="tel"],
    .mag-form select,
    .mag-form textarea { font-size: 16px; }
}

/* ── 4. Hover effects — disable sticky hover on touch devices ── */
@media (hover: none) {
    .prod-card:hover  { transform: none !important; box-shadow: none !important; }
    .ind-card:hover   { transform: none !important; }
    .why-card:hover   { transform: none !important; }
    .prod-app-grid .ind-card:hover { transform: none !important; background: var(--bg-card) !important; }
}

/* ── 5. Section padding — 480px ── */
@media (max-width: 480px) {
    .mag-products, .mag-about, .mag-industries, .mag-why { padding: 60px 0; }
    .mag-cta    { padding: 56px 0; }
    .mag-prod-rows { padding: 60px 0 40px; }
    .section-hdr-center { margin-bottom: 40px !important; }
}

/* ── 6. Page hero padding — 480px ── */
@media (max-width: 480px) {
    .page-hero-mag  { padding: 100px 0 56px; }
    .page-hero-sm   { padding: 80px 0 44px; }
    .hero-inner     { padding-top: calc(var(--header-h, 76px) + 48px); padding-bottom: 56px; }
}

/* ── 7. About grid gap ── */
@media (max-width: 768px) {
    .about-grid { gap: 40px; }
}
@media (max-width: 480px) {
    .about-grid { gap: 28px; }
}

/* ── 8. About badge — out of flow on mobile ── */
@media (max-width: 900px) {
    .about-badge { position: static; display: inline-block; margin-top: 1.25rem; }
    .about-visual { overflow: visible; }
}

/* ── 9. Contact info card padding ── */
@media (max-width: 480px) {
    .contact-info-card { padding: 28px 20px; }
    .cinfo-hours-row   { flex-direction: column; gap: 2px; align-items: flex-start; }
}

/* ── 10. Single page sidebar cards ── */
@media (max-width: 480px) {
    .prod-single-sidebar-card,
    .ind-sidebar-quote  { padding: 28px 20px; }
    .prod-other-links,
    .ind-other-industries { padding: 20px 16px; }
}

/* ── 11. Page stats — stack to 1-col on phones ── */
@media (max-width: 480px) {
    .page-stats-inner { grid-template-columns: 1fr; }
    .page-stat {
        padding: 24px 20px;
        border-left: none;
        border-top: 1px solid var(--border-dark);
    }
    .page-stat:first-child { border-top: none; }
}

/* ── 12. Pricing band — 1-col on phones ── */
@media (max-width: 480px) {
    .pricing-band-inner { grid-template-columns: 1fr; }
    .pricing-band-item  { border-left: none; border-top: 1px solid var(--gray-light); }
}

/* ── 13. Hero CTA button groups — stack on phones ── */
@media (max-width: 480px) {
    .hero-btn-group {
        flex-direction: column !important;
        width: 100%;
        gap: 12px !important;
    }
    .hero-btn-group .btn,
    .hero-btn-group a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ── 14. Ind card padding — 480px ── */
@media (max-width: 480px) {
    .ind-card { padding: 28px 20px; }
}
