:root {
    --primary: #0A2463;
    --secondary: #0DB0DE;
    --ink: #0A2463;
    --muted: #5B6F97;
    --line: rgba(10, 36, 99, .16);
    --mist: #F7FAFF;
    --glass: rgba(247, 250, 255, .78);
    --shadow: 0 24px 70px rgba(10, 36, 99, .12);
    --primary-rgb: 10, 36, 99;
    --secondary-rgb: 13, 176, 222;
    --icon-rgb: 33, 218, 240;
    --icon-accent: #21DAF0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    letter-spacing: .01em;
    font-family: "Rajdhani", "Inter", sans-serif;
    color: var(--ink);
    background: #fff;
}
h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
button, input, select, textarea {
    font: inherit;
}
button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease, background .25s ease, border-color .25s ease;
}
img { max-width: 100%; display: block; }

/* Local fallback for the small set of utility classes used in templates. */
.bg-white { background: #fff; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: .75rem; }
.gap-5 { gap: 1.25rem; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.font-rajdhani { font-family: "Rajdhani", "Inter", sans-serif; }
.font-extrabold { font-weight: 800; }
.text-5xl { font-size: clamp(2.5rem, 5vw, 3rem); line-height: 1; }
.text-a2z-ink { color: var(--ink); }

.container-shell {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -120px;
    z-index: 9999;
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.site-orbit {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 8% 18%, rgba(243, 161, 92, .12), transparent 28%),
        radial-gradient(circle at 92% 5%, rgba(230, 121, 37, .10), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f8fbff 45%, #fff 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-strip {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: rgba(255,255,255,.92);
    font-family: Inter, sans-serif;
    font-size: 12px;
    padding: 8px 0;
}
.top-strip a, .top-strip p { display: inline-flex; align-items: center; gap: 8px; }
.nav-wrap {
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled .nav-wrap { box-shadow: 0 14px 36px rgba(230, 121, 37, .10); }
.nav-shell {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    flex: 0 0 auto;
}
.brand-symbol {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 18px 42px rgba(230, 121, 37, .24);
}
.brand-mark strong { display: block; font-size: 22px; line-height: 1; letter-spacing: .02em; }
.brand-mark small { display: block; color: var(--muted); font-family: Inter, sans-serif; font-size: 12px; margin-top: 4px; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 30px 9px;
    color: #172232;
    font-size: 15px;
    font-weight: 700;
}
.nav-item > a.active, .nav-item > a:hover { color: var(--primary); }
.nav-item > a i { font-size: 10px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    line-height: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}
.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 16px 35px rgba(230, 121, 37, .24);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 45px rgba(230, 121, 37, .30); }
.btn-outline {
    color: var(--primary);
    background: rgba(255,255,255,.82);
    border-color: rgba(230, 121, 37, .18);
}
.btn-outline:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light { color: var(--primary); background: #fff; }

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .22s ease, transform .22s ease;
    padding: 0 0 20px;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.mega-panel {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 22px;
    padding: 24px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(230, 121, 37, .12);
    border-radius: 30px;
    box-shadow: 0 28px 90px rgba(230, 121, 37, .16);
    backdrop-filter: blur(18px);
}
.mega-panel.compact { grid-template-columns: 250px 1fr; }
.small-panel { grid-template-columns: repeat(3, 1fr); width: min(760px, calc(100% - 32px)); margin-right: 5%; }
.mega-intro {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(230,121,37,.96), rgba(243,161,92,.92));
    color: #fff;
    overflow: hidden;
    position: relative;
}
.mega-intro:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
}
.mega-intro span { color: rgba(255,255,255,.72); font-family: Inter, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.mega-intro h3 { font-size: 28px; line-height: 1; margin: 14px 0; font-weight: 800; }
.mega-intro p { color: rgba(255,255,255,.75); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.65; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 800; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mega-grid.slim { grid-template-columns: repeat(3, 1fr); }
.mega-card {
    padding: 16px;
    border: 1px solid rgba(230,121,37,.10);
    border-radius: 20px;
    background: #fff;
    min-height: 118px;
}
.mega-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(230,121,37,.12); border-color: rgba(230,121,37,.24); }
.mega-card i { color: var(--primary); font-size: 20px; }
.mega-card span { display: block; margin-top: 10px; font-weight: 800; font-size: 17px; color: var(--ink); }
.mega-card small { display: block; margin-top: 5px; color: var(--muted); font-family: Inter, sans-serif; font-size: 12px; line-height: 1.45; }
.brand-cloud { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.brand-cloud a {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
    background: #fff;
    font-weight: 800;
    color: var(--ink);
}
.brand-cloud a:hover { color: var(--primary); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(230,121,37,.10); }

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--primary); border-radius: 99px; }
.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(390px, 92vw);
    background: #fff;
    z-index: 1500;
    transform: translateX(110%);
    transition: transform .28s ease;
    box-shadow: -30px 0 80px rgba(9, 19, 31, .18);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head button { width: 42px; height: 42px; border-radius: 50%; background: var(--mist); color: var(--primary); }
.mobile-drawer nav { display: grid; gap: 8px; overflow-y: auto; padding-right: 3px; }
.mobile-drawer nav a,
.mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    font-weight: 800;
    color: var(--ink);
    background: #fff;
    text-align: left;
}
.mobile-submenu {
    display: none;
    padding: 8px 0 0 12px;
    gap: 6px;
}
.mobile-nav-group.open .mobile-submenu {
    display: grid;
}
.mobile-nav-group.open .mobile-submenu-toggle i {
    transform: rotate(180deg);
}
.mobile-submenu a {
    padding: 11px 13px;
    border-radius: 13px;
    font-size: 15px;
    background: var(--mist);
}

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 70px 0 80px;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(230,121,37,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230,121,37,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, #000, transparent 90%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero-content h1 {
    font-size: clamp(32px, 3vw, 64px);
    line-height: .93;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--ink);
}
.gradient-text { color: var(--primary); background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { margin-top: 24px; color: #3c4857; font-family: Inter, sans-serif; font-size: 18px; line-height: 1.8; max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; max-width: 600px; }
.metric-card { padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.78); box-shadow: 0 16px 40px rgba(230,121,37,.08); }
.metric-card strong { font-size: 34px; color: var(--primary); line-height: 1; }
.metric-card span { display: block; font-family: Inter, sans-serif; font-size: 12px; color: var(--muted); margin-top: 6px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-swiper {
    border-radius: 40px;
    overflow: hidden;
    height: 540px;
    box-shadow: 0 35px 100px rgba(230,121,37,.22);
    border: 10px solid #fff;
}
.hero-swiper img { width: 100%; height: 100%; object-fit: cover; }
.hero-swiper .swiper-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(230,121,37,.72));
}
.slide-caption { position: absolute; left: 26px; right: 26px; bottom: 26px; color: #fff; z-index: 2; }
.slide-caption span { font-family: Inter, sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; opacity: .78; }
.slide-caption h3 { font-size: 34px; font-weight: 800; line-height: 1; margin-top: 8px; }
.floating-spec {
    position: absolute;
    left: -34px;
    bottom: 38px;
    width: 240px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    z-index: 3;
}
.floating-spec i { color: var(--primary); font-size: 26px; }
.floating-spec strong { display: block; font-size: 22px; margin-top: 10px; }
.floating-spec span { color: var(--muted); font-family: Inter, sans-serif; font-size: 13px; }
.orbit-badge {
    position: absolute;
    right: -22px;
    top: 46px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--primary);
    font-weight: 800;
    z-index: 3;
}

.section-pad { padding: 72px 0; position: relative; }
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
}
.section-kicker span { width: 36px; height: 2px; background: var(--primary); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.section-heading h2, .page-title h1 { font-size: clamp(32px, 3vw, 64px); line-height: .92; font-weight: 800; letter-spacing: -.025em; }
.section-heading p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.8; max-width: 560px; }

.category-showcase { background: linear-gradient(180deg, #fff, #f7fbff); }
.category-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: stretch; }
.feature-panel {
    position: sticky;
    top: 130px;
    min-height: 520px;
    border-radius: 38px;
    padding: 34px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    overflow: hidden;
}
.feature-panel:after {
    content: "";
    position: absolute;
    inset: auto -90px -100px auto;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}
.feature-panel img { border-radius: 28px; height: 260px; width: 100%; object-fit: cover; margin-bottom: 28px; }
.feature-panel h3 { font-size: 42px; line-height: .95; font-weight: 800; }
.feature-panel p { font-family: Inter, sans-serif; color: rgba(255,255,255,.76); line-height: 1.75; margin-top: 14px; }
.category-stack { display: grid; gap: 16px; }
.category-row {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    box-shadow: 0 12px 35px rgba(230,121,37,.06);
}
.category-row:hover { transform: translateX(8px); box-shadow: 0 20px 48px rgba(230,121,37,.11); }
.icon-box {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: rgba(230,121,37,.08);
    font-size: 24px;
}
.category-row h3 { font-size: 26px; font-weight: 800; }
.category-row p { color: var(--muted); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.65; }
.category-row .arrow { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--mist); color: var(--primary); }

.solutions-ribbon { background: #fff; overflow: hidden; }
.solution-map {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--line);
}
.solution-tile {
    min-height: 300px;
    padding: 26px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.solution-tile:nth-child(even) { background: #f8fbff; }
.solution-tile:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; transform: translateY(-8px); }
.solution-tile:hover p, .solution-tile:hover i { color: rgba(255,255,255,.82); }
.solution-tile i { font-size: 32px; color: var(--primary); }
.solution-tile h3 { font-size: 28px; line-height: 1; font-weight: 800; }
.solution-tile p { color: var(--muted); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.65; }

.about-band { background: linear-gradient(180deg, #f7fbff, #fff); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
.image-collage { position: relative; min-height: 560px; }
.image-collage img { position: absolute; object-fit: cover; border: 10px solid #fff; box-shadow: var(--shadow); }
.image-collage img:first-child { width: 78%; height: 390px; border-radius: 38px; left: 0; top: 0; }
.image-collage img:nth-child(2) { width: 54%; height: 260px; border-radius: 30px; right: 0; bottom: 28px; }
.image-collage .collage-note {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 250px;
    padding: 22px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.collage-note strong { font-size: 32px; color: var(--primary); }
.collage-note span { display: block; color: var(--muted); font-family: Inter, sans-serif; font-size: 13px; }
.about-copy h2 { font-size: clamp(32px, 3vw, 64px); line-height: .95; font-weight: 800; }
.about-copy p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.85; margin-top: 18px; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.check-grid span { padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; font-weight: 800; }
.check-grid i { color: var(--primary); margin-right: 8px; }

.why-zone { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
    position: relative;
    padding: 28px;
    min-height: 285px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
}
.why-card:before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(230,121,37,.07);
    right: -45px;
    top: -45px;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.why-card i { color: var(--primary); font-size: 30px; }
.why-card h3 { font-size: 28px; line-height: 1; font-weight: 800; margin-top: 34px; }
.why-card p { color: var(--muted); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.7; margin-top: 12px; }

.brand-marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #fbfdff;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee-track span {
    min-width: 190px;
    padding: 28px 22px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    border-right: 1px solid var(--line);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.industries-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
.industry-list { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-list span { padding: 13px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 800; box-shadow: 0 12px 28px rgba(230,121,37,.06); }
.tech-card {
    border-radius: 36px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(230,121,37,.96), rgba(243,161,92,.9));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tech-card p { color: rgba(255,255,255,.76); font-family: Inter, sans-serif; line-height: 1.75; }

.service-orbit { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card {
    padding: 24px;
    min-height: 245px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.86);
    box-shadow: 0 12px 32px rgba(230,121,37,.07);
}
.service-card:nth-child(2), .service-card:nth-child(4) { margin-top: 42px; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card i { color: var(--primary); font-size: 28px; }
.service-card h3 { font-size: 28px; line-height: 1; font-weight: 800; margin-top: 28px; }
.service-card p { color: var(--muted); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.7; margin-top: 10px; }

.stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 36px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.stat-box { padding: 34px; border-right: 1px solid var(--line); }
.stat-box:last-child { border-right: 0; }
.stat-box strong { font-size: 54px; line-height: 1; color: var(--primary); }
.stat-box span { display: block; color: var(--muted); font-family: Inter, sans-serif; margin-top: 8px; }

.blog-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.blog-card {
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-card:first-child { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.blog-card:first-child p, .blog-card:first-child .meta { color: rgba(255,255,255,.75); }
.meta { color: var(--muted); font-family: Inter, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.blog-card h3 { font-size: 32px; line-height: 1; font-weight: 800; }
.blog-card p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.7; }

.page-hero {
    --page-hero-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=82');
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 45vh;
    padding: clamp(54px, 8vh, 82px) 0;
    color: #fff;
    background-image:
        linear-gradient(90deg, rgba(16,16,16,.88) 0%, rgba(16,16,16,.70) 46%, rgba(16,16,16,.48) 100%),
        linear-gradient(135deg, rgba(230,121,37,.50), rgba(16,16,16,.18) 52%, rgba(16,16,16,.28)),
        var(--page-hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--line);
}
.page-title { display: grid; grid-template-columns: 1fr .55fr; gap: 40px; align-items: end; }
.page-title > * { min-width: 0; }
.page-title p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.8; font-size: 17px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; font-family: Inter, sans-serif; font-size: 13px; color: var(--muted); }
.breadcrumbs li:not(:last-child):after { content: "/"; margin-left: 8px; color: rgba(230,121,37,.35); }
.breadcrumbs a { color: var(--primary); font-weight: 700; }
.page-hero .page-title h1,
.page-hero .page-title p {
    color: #fff;
    text-shadow: 0 16px 38px rgba(0,0,0,.32);
}
.page-hero .page-title p {
    color: rgba(255,255,255,.82);
}
.page-hero .section-kicker {
    color: #F3A15C;
    text-shadow: 0 10px 28px rgba(0,0,0,.24);
}
.page-hero .section-kicker span {
    background: #F3A15C;
}
.page-hero .breadcrumbs ol,
.page-hero .breadcrumbs span {
    color: rgba(255,255,255,.72);
}
.page-hero .breadcrumbs a {
    color: #fff;
}
.page-hero .breadcrumbs li:not(:last-child):after {
    color: rgba(243,161,92,.78);
}

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.premium-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(230,121,37,.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.premium-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.premium-card img { width: 100%; height: 220px; object-fit: cover; }
.premium-card-body {
    padding: 24px;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.premium-card h3 { font-size: 30px; line-height: 1; font-weight: 800; }
.premium-card p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.7; margin-top: 12px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;margin-bottom: 18px; }
.pill-list span, .pill-list a { padding: 9px 12px; border-radius: 999px; background: var(--mist); color: var(--primary); font-weight: 800; font-size: 13px; }
.pill-list-single-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-gutter: stable both-edges;
    padding-bottom: 10px;
    margin-bottom: 22px;
    scrollbar-width: thin;
    scrollbar-color: rgba(10, 36, 99, .55) rgba(13, 176, 222, .14);
    -webkit-overflow-scrolling: touch;
}
.pill-list-single-row span,
.pill-list-single-row a {
    flex: 0 0 auto;
    white-space: nowrap;
}
.pill-list-single-row::-webkit-scrollbar {
    height: 8px;
}
.pill-list-single-row::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
.pill-list-single-row::-webkit-scrollbar-track {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(10, 36, 99, .08), rgba(13, 176, 222, .14));
}
.pill-list-single-row::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(10, 36, 99, .72), rgba(13, 176, 222, .78));
    border: 1px solid rgba(255,255,255,.5);
}
.pill-list-single-row::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(10, 36, 99, .88), rgba(13, 176, 222, .92));
}
.premium-card .product-card-cta {
    margin-top: auto;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.detail-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.detail-media { position: sticky; top: 140px; border-radius: 34px; overflow: hidden; border: 10px solid #fff; box-shadow: var(--shadow); }
.detail-media img { width: 100%; height: 460px; object-fit: cover; }
.detail-copy { display: grid; gap: 18px; }
.detail-copy h2 { font-size: 48px; line-height: .98; font-weight: 800; }
.detail-copy p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.85; }
.spec-list { display: grid; gap: 12px; }
.spec-list li { padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line); background: #fff; font-weight: 800; }
.spec-list i { color: var(--primary); margin-right: 10px; }

.category-detail-grid {
    display: grid;
    grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
    gap: 44px;
    align-items: center;
}
.category-detail-media {
    position: relative;
    min-height: 430px;
    border-radius: 30px;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: var(--shadow);
    background: #fff;
}
.category-detail-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(16,16,16,.58));
}
.category-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}
.category-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}
.category-stat-row span {
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: 13px;
    box-shadow: 0 12px 34px rgba(230,121,37,.06);
}
.category-stat-row strong {
    display: block;
    color: var(--primary);
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 30px;
    line-height: 1;
}
.product-listing-band,
.product-detail-band {
    background: linear-gradient(180deg, #f7fbff, #fff);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}
.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(230,121,37,.14);
    background: #fff;
    box-shadow: 0 16px 44px rgba(16,16,16,.06);
    transition: transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s ease, border-color .34s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230,121,37,.32);
    box-shadow: var(--shadow);
}
.product-card-image {
    display: block;
    height: 225px;
    overflow: hidden;
    padding: 14px;
    background:
        radial-gradient(circle at 50% 0%, rgba(230,121,37,.10), transparent 42%),
        #fff;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s ease;
}
.product-card:hover .product-card-image img {
    transform: scale(1.03);
}
.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}
.product-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.product-card h3 {
    margin-top: 14px;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}
.product-card h3 a {
    color: var(--ink);
}
.product-card h3 a:hover {
    color: var(--primary);
}
.product-card p {
    margin-top: 12px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.7;
}
.product-card ul {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    color: #273342;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}
.product-card li {
    display: flex;
    gap: 9px;
}
.product-card li i {
    margin-top: 4px;
    color: var(--primary);
}
.product-card .btn,
.product-card .link-arrow {
    margin-top: 15px;
}
.product-card-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 16px 35px rgba(230, 121, 37, .24);
}
.product-card-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(230, 121, 37, .30);
}
.product-card.compact .product-card-image {
    height: 190px;
}
.product-card.compact h3 {
    font-size: 26px;
}
.product-showcase {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: start;
}
.product-gallery {
    position: sticky;
    top: 130px;
    display: block;
}
.product-gallery-main {
    position: relative;
    min-height: clamp(430px, 43vw, 620px);
    padding: 18px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(10, 36, 99, .08);
    background:
        radial-gradient(circle at 18% 14%, rgba(13,176,222,.18), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(10,36,99,.14), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(232,244,252,.96));
    box-shadow: 0 28px 72px rgba(34,25,19,.13);
}
.product-gallery-main::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    pointer-events: none;
}
.product-gallery-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,16,16,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,16,16,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .6;
    pointer-events: none;
    animation: productGalleryGridDrift 18s linear infinite;
}
.product-gallery-stage {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: clamp(350px, 36vw, 500px);
    padding: 42px 34px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 56%, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 22%, rgba(255,255,255,0) 56%),
        linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.12));
    isolation: isolate;
}
.product-gallery-stage::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.84);
    pointer-events: none;
}
.product-gallery-main img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-height: 380px;
    padding: 0;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 24px 34px rgba(10, 36, 99, .18));
    animation: productHeroFloat 7s ease-in-out infinite;
}
.product-gallery-vector,
.product-gallery-orbit,
.product-gallery-float {
    position: absolute;
    pointer-events: none;
}
.product-gallery-vector {
    border-radius: 999px;
    opacity: .72;
    filter: blur(.2px);
}
.product-gallery-vector-one {
    top: 11%;
    right: 10%;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(13,176,222,.26);
    border-right-color: rgba(13,176,222,.58);
    border-bottom-color: rgba(10,36,99,.26);
    transform: rotate(18deg);
    animation: productVectorOrbit 14s linear infinite;
}
.product-gallery-vector-two {
    bottom: 12%;
    left: 8%;
    width: 140px;
    height: 140px;
    border: 1px dashed rgba(10,36,99,.18);
    transform: rotate(-14deg);
    animation: productVectorPulse 9s ease-in-out infinite;
}
.product-gallery-orbit {
    border-radius: 50%;
    border: 1px solid rgba(13,176,222,.18);
}
.product-gallery-orbit-one {
    inset: 16% 14%;
    animation: productVectorPulse 10s ease-in-out infinite;
}
.product-gallery-orbit-two {
    inset: 27% 25%;
    border-color: rgba(10,36,99,.12);
    animation: productVectorPulse 10s ease-in-out infinite reverse;
}
.product-gallery-float {
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(222,242,252,.78));
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 18px 34px rgba(10,36,99,.10);
    color: var(--secondary);
    font-size: 20px;
    backdrop-filter: blur(8px);
}
.product-gallery-float::after {
    content: "";
    position: relative;
    width: 12px;
    height: 12px;
    margin-top: -38px;
    margin-left: 34px;
    border-radius: 50%;
    background: rgba(13,176,222,.18);
    box-shadow: 0 0 0 10px rgba(13,176,222,.08);
}
.product-gallery-float-one {
    top: 10%;
    left: 10%;
    animation: productFloatBadge 6s ease-in-out infinite;
}
.product-gallery-float-two {
    right: 8%;
    bottom: 19%;
    animation: productFloatBadge 6.5s ease-in-out infinite 1.2s;
}
.product-gallery-float-three {
    left: 14%;
    bottom: 16%;
    animation: productFloatBadge 5.8s ease-in-out infinite 2s;
}
.product-thumbs {
    display: grid;
    align-content: start;
    gap: 12px;
}
.product-thumbs button {
    height: 98px;
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid transparent;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16,16,16,.08);
}
.product-thumbs button.active {
    border-color: var(--primary);
}
.product-thumbs img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}
.product-info-panel {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 30px;
    background:radial-gradient(circle at 100% 0%, rgb(26 101 153 / 39%), transparent 32%), linear-gradient(180deg, #fff, #1e74a830);
    border: 1px solid rgba(230,121,37,.18);
    box-shadow: 0 24px 70px rgba(34,25,19,.10);
}
.product-info-panel h2 {
    margin-top: 14px;
    font-size: clamp(32px, 3vw, 64px);
    line-height: .94;
    font-weight: 800;
}
.product-info-panel p {
    margin-top: 18px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.85;
}
.product-feature-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}
.product-brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.product-brand-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 1px solid rgba(230,121,37,.22);
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
}
.product-feature-list li {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff7f0;
    border: 1px solid rgba(230,121,37,.14);
    color: #253140;
    font-weight: 800;
}
.product-feature-list i {
    margin-top: 4px;
    color: var(--primary);
}
@keyframes productHeroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes productFloatBadge {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -12px, 0) rotate(4deg);
    }
}
@keyframes productVectorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .42;
    }
    50% {
        transform: scale(1.04);
        opacity: .72;
    }
}
@keyframes productVectorOrbit {
    0% {
        transform: rotate(18deg);
    }
    100% {
        transform: rotate(378deg);
    }
}
@keyframes productGalleryGridDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-8px, -8px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
.product-detail-tabs {
    display: grid;
    grid-template-columns: 1.05fr 1fr .95fr;
    gap: 20px;
    align-items: stretch;
}
.product-detail-panel {
    min-height: 360px;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 42px rgba(16,16,16,.05);
}
.product-detail-panel h2 {
    margin-top: 14px;
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
}
.product-detail-panel p {
    margin-top: 16px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.8;
}
.product-detail-panel.accent {
    color: #fff;
    background:
        radial-gradient(circle at 20% 0%, rgba(243,161,92,.28), transparent 32%),
        linear-gradient(135deg, #101010, #241a13);
    border-color: rgba(255,255,255,.12);
}
.product-detail-panel.accent p,
.product-detail-panel.accent .section-kicker {
    color: rgba(255,255,255,.76);
}
.product-detail-panel.accent h2 {
    color: #fff;
}
.product-detail-band {
    padding-top: 12px;
}
.product-detail-shell {
    display: block;
    max-width: 1180px;
    margin-inline: auto;
}
.product-detail-tabs {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
    width: min(760px, 100%);
    margin: 0 auto 14px;
    padding: 8px;
    border-radius: 22px;
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 48px rgba(16,16,16,.12);
}
.product-detail-tabs button {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.76);
    font: 800 14px/1.2 "Barlow Condensed", sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.product-detail-tabs button i {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 12px;
    background: rgba(255,255,255,.10);
    color: #fff;
}
.product-detail-tabs button:hover,
.product-detail-tabs button.active {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #0b326f, #21daf0);
    border-color: rgba(255,255,255,.22);
    color: #fff;
}
.product-detail-tabs button.active i {
    background: rgba(255,255,255,.22);
}
.product-tab-panels {
    min-width: 0;
}
.product-tab-panel {
    display: none;
    min-height: 0;
    padding: clamp(24px, 3vw, 38px);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgb(33 139 186 / 26%), rgba(255, 255, 255, .98)), #fff;
    border: 1px solid rgba(230,121,37,.18);
    box-shadow: 0 22px 64px rgba(34,25,19,.08);
}
.product-tab-panel.active {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .7fr);
    gap: clamp(22px, 3vw, 40px);
    align-items: start;
}
.product-tab-panel-stack.active {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}
.product-tab-panel .section-kicker {
    margin-bottom: 14px;
}
.product-tab-panel h2 {
    margin: 0;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1;
    font-weight: 800;
    color: var(--dark);
}
.product-panel-copy p {
    margin-top: 18px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}
.product-panel-copy .link-arrow {
    margin-top: 18px;
}
.product-tab-panel-stack .product-panel-copy {
    max-width: 920px;
}
.product-panel-aside,
.product-tab-aside {
    padding: 20px;
    border-radius: 22px;
    background: #fff7f0;
    border: 1px solid rgba(230,121,37,.16);
}
.product-panel-aside span,
.product-tab-aside h3 {
    display: block;
    color: var(--dark);
    font-weight: 800;
}
.product-tab-aside h3 {
    font-size: 28px;
    line-height: 1;
}
.product-panel-aside ul {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}
.product-panel-aside li {
    display: flex;
    gap: 9px;
    color: #324052;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.product-panel-aside i {
    margin-top: 3px;
    color: var(--primary);
}
.product-spec-grid {
    align-self: stretch;
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #fff7f0;
    border: 1px solid rgba(230,121,37,.16);
}
.product-spec-grid div {
    grid-template-columns: minmax(130px, .45fr) minmax(0, 1fr);
    padding: 12px 0;
}
.product-datasheet-steps {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.product-datasheet-steps span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.product-datasheet-steps strong {
    color: #F3A15C;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    line-height: 1;
}
.product-tab-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.product-tab-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 13px 14px;
    border-radius: 16px;
    background: #fff;
    color: #263241;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(34,25,19,.05);
}
.product-tab-list i {
    margin-top: 3px;
    color: var(--primary);
}
.product-tab-panel .spec-table {
    margin-top: 0;
}
.product-tab-panel-dark {
    color: #fff;
    background:
        radial-gradient(circle at 16% 0%, rgba(243,161,92,.22), transparent 34%),
        linear-gradient(145deg, #120f0c, #2c2018);
    border-color: rgba(255,255,255,.12);
}
.product-tab-panel-dark h2,
.product-tab-panel-dark h3 {
    color: #fff;
}
.product-tab-panel-dark p,
.product-tab-panel-dark .section-kicker {
    color: rgba(255,255,255,.74);
}
.product-tab-panel-dark .product-tab-aside {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
}
.product-tab-panel-dark .product-tab-list li {
    background: rgba(255,255,255,.09);
    color: rgba(255,255,255,.86);
    box-shadow: none;
}
.spec-table {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.spec-table div {
    display: grid;
    grid-template-columns: minmax(110px, .45fr) minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(230,121,37,.12);
}
.spec-table dt {
    color: var(--ink);
    font-weight: 800;
}
.spec-table dd {
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.55;
}
.solution-card .product-card-image,
.service-list-card .product-card-image {
    height: 250px;
}

.contact-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; }
.contact-info, .contact-form {
    border: 1px solid var(--line);
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 32px;
}
.contact-info { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.contact-info p { color: rgba(255,255,255,.78); font-family: Inter, sans-serif; line-height: 1.75; }
.career-apply-copy,
.career-apply-media {
    position: relative;
    z-index: 1;
}
.career-apply-copy {
    max-width: 420px;
}
.career-apply-media {
    margin-top: auto;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
}
.career-apply-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.contact-method { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-method i { font-size: 22px; color: #fff; }
.contact-method span { display: block; color: rgba(255,255,255,.74); font-family: Inter, sans-serif; font-size: 13px; }
.contact-method strong { font-size: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font-family: Inter, sans-serif;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(230,121,37,.08); }
.alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 18px; font-family: Inter, sans-serif; }
.alert-success { background: #ecfdf3; color: #146c43; border: 1px solid #badbcc; }
.alert-info { background: #eef6ff; color: var(--primary); border: 1px solid rgba(230,121,37,.16); }

.site-footer { background: linear-gradient(135deg, black, #000000); color: #fff; }
.footer-cta {
    transform: translateY(-50%);
    margin-bottom: -48px;
    border-radius: 34px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-cta span { color: var(--primary); font-family: Inter, sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.footer-cta h2 { font-size: clamp(30px, 4vw, 48px); line-height: .98; font-weight: 800; max-width: 760px; margin-top: 8px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; padding: 95px 0 44px; }
.brand-mark.light { color: #fff; }
.brand-mark.light small { color: rgba(255,255,255,.68); }
.footer-brand p, .footer-grid p { color: rgba(255,255,255,.68); font-family: Inter, sans-serif; line-height: 1.75; margin-top: 18px; }
.footer-grid h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.footer-grid a { display: block; color: rgba(255,255,255,.72); margin: 10px 0; font-family: Inter, sans-serif; font-size: 14px; }
.footer-grid a:hover { color: #fff; transform: translateX(4px); }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.10); color: #fff; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; color: rgba(255,255,255,.65); font-family: Inter, sans-serif; font-size: 13px; }
.footer-bottom .container-shell { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1120px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    .hero-grid, .about-grid, .category-layout, .industries-grid, .contact-panel, .detail-layout, .page-title { grid-template-columns: 1fr; }
    .solution-map, .why-grid, .service-orbit, .stats-panel, .cards-grid, .blog-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-panel, .detail-media { position: relative; top: auto; }
}

@media (max-width: 720px) {
    .top-strip { display: none; }
    .nav-shell { height: 72px; }
    .brand-mark small { display: none; }
    .brand-mark strong { font-size: 18px; }
    .brand-symbol { width: 46px; height: 46px; border-radius: 15px; font-size: 18px; }
    .nav-actions .btn { display: none; }
    .hero { min-height: auto; padding: 36px 0 52px; }
    .hero-content h1 { font-size: 45px; }
    .hero-content p { font-size: 16px; }
    .hero-metrics, .solution-map, .why-grid, .service-orbit, .stats-panel, .cards-grid, .blog-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: auto; }
    .hero-swiper { height: 380px; border-radius: 28px; }
    .floating-spec, .orbit-badge { display: none; }
    .section-pad { padding: 56px 0; }
    .section-heading { display: block; }
    .section-heading h2, .page-title h1 { font-size: 32px; margin: 10px 0 16px; }
    .category-row { grid-template-columns: 58px 1fr; }
    .category-row .arrow { display: none; }
    .icon-box { width: 56px; height: 56px; border-radius: 18px; }
    .image-collage { min-height: 460px; }
    .image-collage img:first-child { width: 100%; height: 300px; }
    .image-collage img:nth-child(2) { width: 72%; height: 200px; }
    .service-card:nth-child(2), .service-card:nth-child(4) { margin-top: 0; }
    .stat-box { border-right: 0; border-bottom: 1px solid var(--line); }
    .footer-cta { transform: none; margin: 0 0 30px; display: block; }
    .footer-cta .btn { margin-top: 20px; }
    .footer-grid { padding-top: 50px; }
    .career-apply-media {
        min-height: 220px;
        border-radius: 22px;
    }
}

/* Premium light-theme refinement: keeps #E67925 as the accent, not a dark background system. */
.top-strip {
    background: rgba(255, 255, 255, .94);
    color: var(--primary);
    border-bottom: 1px solid rgba(230, 121, 37, .10);
}
.top-strip a { color: var(--primary); }
.nav-wrap {
    background: rgba(255,255,255,.92);
}
.brand-symbol {
    background:
        linear-gradient(135deg, #E67925, #F3A15C);
}
.btn-primary {
    background: linear-gradient(135deg, #E67925, #F3A15C);
    color: #fff;
    box-shadow: 0 18px 44px rgba(230, 121, 37, .28);
}

.hero-premium-carousel {
    min-height: 85vh;
    padding: 0;
    background:
        radial-gradient(circle at 11% 16%, rgba(230, 121, 37, .12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(243, 161, 92, .12), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 54%, #ffffff 100%);
}
.hero-premium-carousel:before {
    content: none;
}
.hero-circuit {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0 18%, rgba(230,121,37,.16) 18.1% 18.25%, transparent 18.4% 100%),
        linear-gradient(18deg, transparent 0 63%, rgba(230,121,37,.13) 63.1% 63.25%, transparent 63.4% 100%);
    pointer-events: none;
    z-index: 5;
}
.hero-stage {
    position: relative;
    height: 85vh;
    min-height: 620px;
    max-height: 860px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    background: transparent;
}
.hero-track {
    position: absolute;
    inset: 0;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(34px) scale(.985);
    transition: opacity .75s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-slide.is-active {
    position: absolute;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: grid;
    align-items: center;
    padding: 44px 0 96px;
}
.hero-slide-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.83) 35%, rgba(255,255,255,.34) 72%, rgba(255,255,255,.64) 100%),
        radial-gradient(circle at 72% 18%, rgba(230,121,37,.22), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.58));
    z-index: 1;
}
.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,16,16,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,16,16,.045) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 2;
}
.hero-slide-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(280px, .5fr);
    gap: 44px;
    align-items: center;
    z-index: 3;
}
.hero-content {
    position: relative;
    z-index: 5;
}
.hero-glass-panel {
    max-width: 780px;
    padding: clamp(24px, 3vw, 42px);
    border-radius: 34px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.86);
    box-shadow: 0 28px 90px rgba(16, 16, 16, .12);
    backdrop-filter: blur(18px);
}
.hero-content h1 {
    max-width: 720px;
    text-wrap: balance;
}
.hero-content p {
    color: #243142;
    max-width: 660px;
}
.hero-metrics {
    position: relative;
}
.metric-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68)),
        radial-gradient(circle at top right, rgba(230,121,37,.08), transparent 46%);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(230, 121, 37, .13);
}
.hero-floating-cluster {
    justify-self: end;
    display: grid;
    gap: 16px;
    width: min(330px, 100%);
}
.hero-image-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    color: var(--primary);
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(16, 16, 16, .10);
    backdrop-filter: blur(16px);
}
.hero-image-label i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(230, 121, 37, .08);
}
.floating-spec {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.9);
    position: static;
    width: auto;
    box-shadow: 0 18px 44px rgba(16, 16, 16, .10);
}
.orbit-badge {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
}
.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 30;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}
.hero-prev,
.hero-next {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(230, 121, 37, .22);
    box-shadow: 0 14px 36px rgba(16, 16, 16, .10);
}
.hero-prev:hover,
.hero-next:hover {
    color: #fff;
    background: var(--primary);
}
.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 92px;
    pointer-events: auto;
}
.hero-dots button,
.hero-controls .swiper-pagination-bullet {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: rgba(230, 121, 37, .28);
    opacity: 1;
}
.hero-dots button.is-active,
.hero-controls .swiper-pagination-bullet-active {
    background: var(--primary);
}

.mega-intro,
.feature-panel,
.tech-card,
.contact-info,
.blog-card:first-child {
    color: var(--ink);
    background:
        linear-gradient(145deg, rgba(255,255,255,.95), rgba(246,250,255,.88)),
        radial-gradient(circle at top right, rgba(230,121,37,.12), transparent 42%);
    border: 1px solid rgba(230, 121, 37, .14);
    box-shadow: 0 24px 64px rgba(230, 121, 37, .10);
}
.mega-intro:after,
.feature-panel:after {
    border-color: rgba(230, 121, 37, .12);
}
.mega-intro span,
.footer-cta span {
    color: var(--primary);
}
.mega-intro h3,
.feature-panel h3,
.tech-card h3,
.contact-info h2,
.blog-card:first-child h3 {
    color: var(--ink);
}
.mega-intro p,
.feature-panel p,
.tech-card p,
.contact-info p,
.blog-card:first-child p,
.blog-card:first-child .meta {
    color: var(--muted);
}
.feature-panel .btn-light {
    background: linear-gradient(135deg, #E67925, #F3A15C);
    color: #fff;
}
.solution-tile:hover {
    background:
        linear-gradient(145deg, #ffffff, #f3f8ff),
        radial-gradient(circle at top right, rgba(230,121,37,.12), transparent 38%);
    color: var(--ink);
    border-color: rgba(230, 121, 37, .22);
}
.solution-tile:hover p,
.solution-tile:hover i {
    color: var(--primary);
}
.why-card,
.service-card,
.premium-card,
.category-row,
.stats-panel,
.contact-form {
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
        radial-gradient(circle at top right, rgba(230,121,37,.055), transparent 42%);
}

.site-footer {
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(230, 121, 37, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    border-top: 1px solid rgba(230, 121, 37, .12);
}
.footer-cta {
    border: 1px solid rgba(230, 121, 37, .14);
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,250,255,.9)),
        radial-gradient(circle at 92% 14%, rgba(230,121,37,.12), transparent 30%);
}
.brand-mark.light,
.footer-grid h3 {
    color: var(--ink);
}
.brand-mark.light small,
.footer-brand p,
.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: var(--muted);
}
.footer-grid a:hover {
    color: var(--primary);
}
.social-row a {
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(230, 121, 37, .14);
}
.footer-bottom {
    border-top: 1px solid rgba(230, 121, 37, .10);
}

.contact-info .contact-method {
    border-bottom: 1px solid rgba(230, 121, 37, .12);
}
.contact-method i,
.contact-method span,
.contact-method strong {
    color: var(--primary);
}

body:not(.aos-enabled) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}
.hero [data-aos],
.hero .image-reveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
}

@media (max-width: 1120px) {
    .hero-slide-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .hero-stage .swiper-slide {
        min-height: auto;
        padding: 54px 0 112px;
    }
    .hero-stage {
        height: auto;
        min-height: 920px;
        max-height: none;
    }
    .hero-track {
        position: absolute;
        min-height: 100%;
    }
    .hero-visual {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .hero-premium-carousel {
        padding: 0;
    }
    .hero-stage {
        height: auto;
        border-radius: 0;
    }
    .hero-stage .swiper-slide {
        padding: 38px 0 104px;
    }
    .hero-stage {
        min-height: 890px;
        height: auto;
    }
    .hero-overlay {
        padding: 30px 0 96px;
    }
    .hero-content h1 {
        font-size: 30px;
        line-height: 1.04;
        letter-spacing: -.012em;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .hero-slide-grid.container-shell {
        width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        margin-inline: auto;
        overflow: visible;
    }
    .hero .section-kicker {
        flex-wrap: wrap;
        font-size: 10px;
        gap: 7px;
        letter-spacing: .11em;
    }
    .hero .section-kicker span {
        width: 28px;
    }
    .hero-glass-panel {
        width: min(100%, 342px);
        max-width: 342px;
        padding: 20px;
        border-radius: 28px;
    }
    .hero-content p {
        font-size: 15px;
        line-height: 1.75;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hero-actions .btn {
        justify-content: center;
        padding: 13px 16px;
    }
    .hero-floating-cluster {
        display: none;
    }
    .hero-image-frame {
        min-height: 360px;
        border-radius: 30px;
    }
    .hero-image-frame img {
        height: 360px;
    }
    .hero-image-label {
        left: 16px;
        right: 16px;
        bottom: 16px;
        border-radius: 22px;
    }
    .hero-controls {
        bottom: 26px;
    }
    .footer-cta {
        transform: none;
        margin-bottom: 28px;
    }
}

/* Final corporate UI pass */
.site-header {
    background: #111111;
}
.top-strip {
    background: #0b0b0b;
    color: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-strip a {
    color: rgba(255,255,255,.82);
}
.top-strip i {
    color: var(--primary);
}
.nav-wrap {
    background: rgba(17,17,17,.96);
    border-bottom: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.site-header.is-scrolled .nav-wrap {
    box-shadow: 0 18px 46px rgba(0,0,0,.28);
}
.brand-mark,
.brand-mark strong {
    color: #fff;
}
.brand-mark small {
    color: rgba(255,255,255,.62);
}
.nav-item > a {
    color: rgba(255,255,255,.86);
}
.nav-item > a.active,
.nav-item > a:hover {
    color: var(--primary);
}
.menu-toggle {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
}
.menu-toggle span {
    background: #fff;
}

.hero-premium-carousel {
    display: block;
    min-height: 0;
    padding: 0;
    background: #101010;
}
.hero-stage {
    height: 85vh;
    min-height: 600px;
    max-height: none;
}
.hero-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(100%) scale(1.02);
    opacity: 0;
    filter: saturate(.9) contrast(.96);
    transition:
        opacity .95s ease,
        transform 1.25s cubic-bezier(.16, 1, .3, 1),
        filter 1.2s ease;
}
.hero-slide.is-prev {
    transform: translateX(-100%) scale(1.03);
}
.hero-slide.is-next {
    transform: translateX(100%) scale(1.03);
}
.hero-slide.is-active {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: saturate(1.05) contrast(1.02);
}
.hero-slide.is-active + .hero-slide {
    transform: translateX(12%) scale(1.02);
}
.hero-controls {
    justify-content: flex-end;
    bottom: 34px;
}
.hero-prev,
.hero-next {
    color: #fff;
    background: rgba(0,0,0,.42);
    border-color: rgba(255,255,255,.22);
    backdrop-filter: blur(14px);
}
.hero-prev:hover,
.hero-next:hover {
    background: var(--primary);
}
.hero-dots {
    padding: 14px 16px;
    min-width: auto;
    border-radius: 999px;
    background: rgba(0,0,0,.36);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
}
.hero-dots button {
    width: 34px;
    height: 5px;
    background: rgba(255,255,255,.42);
}
.hero-dots button.is-active {
    width: 56px;
    background: var(--primary);
}

.intro-command {
    margin-top: 0;
    background:
        radial-gradient(circle at 8% 0%, rgb(240 242 249), #f2f2f4 34%), 
        linear-gradient(180deg, #fff, #f5f8fc);
    overflow: hidden;
}
.intro-command-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
    gap: 28px;
    align-items: center;
}
.intro-command h1 {
    max-width: 860px;
    font-size: clamp(32px, 3vw, 64px);
    line-height: .92;
    font-weight: 800;
    letter-spacing: -.032em;
}
.intro-command p {
    max-width: 760px;
    margin-top: 22px;
    color: #263241;
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 1.85;
}
.intro-metrics {
    display: grid;
    gap: 14px;
}
.intro-metrics .metric-card {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 28px;
}

.mega-menu {
    padding-top: 8px;
}
.mega-panel,
.mega-panel.compact,
.small-panel,
.mega-panel-editorial {
    width: min(1220px, calc(100% - 44px));
    min-height: auto;
    margin-inline: auto;
    border-radius: 28px;
    padding: 18px;
    background:
        radial-gradient(circle at top left, rgba(230,121,37,.22), transparent 28%),
        linear-gradient(135deg, rgba(21,21,21,.98), rgba(36,28,22,.97));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 32px 90px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
}
.mega-panel-editorial {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
}
.mega-spotlight {
    min-height: 330px;
    padding: 28px;
    border-radius: 22px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(230,121,37,.96), rgba(243,161,92,.76)),
        radial-gradient(circle at bottom right, rgba(255,255,255,.24), transparent 34%);
    position: relative;
    overflow: hidden;
}
.mega-spotlight:after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -82px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.34);
}
.mega-spotlight span {
    display: inline-block;
    color: rgba(255,255,255,.82);
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.mega-spotlight h3 {
    margin-top: 16px;
    color: #fff;
    font-size: 34px;
    line-height: .96;
    font-weight: 800;
}
.mega-spotlight p {
    margin-top: 16px;
    max-width: 290px;
    color: rgba(255,255,255,.82);
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}
.mega-spotlight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #fff;
    font-weight: 800;
}
.mega-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

/* Mobile fixes for section responsiveness and brand logos */
@media (max-width: 720px) {
    .container-shell { width: 100% !important; padding-left: 16px !important; padding-right: 16px !important; box-sizing: border-box; }
    .detail-panel, .spec-panel, .datasheet-panel { padding: 16px !important; border-radius: 14px !important; }
    .detail-panel .detail-panel-body p, .datasheet-panel p, .industries-hero-intro, .about-copy p { max-width: 100% !important; }
    .marquee-track span { min-width: 140px !important; padding: 18px 12px !important; font-size: 20px !important; }
    .brand-marquee-logo img.brand-logo-on-dark { padding: 8px; border-radius: 10px; background: #000; }
}
.mega-feature-card,
.mega-company-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    min-height: 142px;
    border-radius: 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
}
.mega-feature-card:hover,
.mega-company-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.12);
    border-color: rgba(230,121,37,.58);
}
.mega-feature-icon,
.mega-company-card i {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: rgba(230,121,37,.92);
}
.mega-feature-copy strong,
.mega-company-card strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.08;
}
.mega-feature-copy small,
.mega-company-card small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.64);
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.55;
}
.service-feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.service-feature-grid .mega-feature-card {
    display: block;
}
.service-feature-grid .mega-feature-icon {
    margin-bottom: 14px;
}
.company-editorial {
    grid-template-columns: 420px 1fr;
}
.mega-company-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.mega-company-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mega-company-card i {
    margin-bottom: auto;
}

.solutions-ribbon {
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(230,121,37,.26), transparent 30%),
        linear-gradient(135deg, #101010, #211a15 64%, #101010);
}
.solutions-ribbon .section-heading h2,
.solutions-ribbon .section-heading p {
    color: #fff;
}
.solutions-ribbon .solution-map {
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.10);
}
.solutions-ribbon .solution-tile {
    color: #fff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.solutions-ribbon .solution-tile:nth-child(even) {
    background: rgba(255,255,255,.09);
}
.solutions-ribbon .solution-tile h3,
.solutions-ribbon .solution-tile i {
    color: #fff;
}
.solutions-ribbon .solution-tile p {
    color: rgba(255,255,255,.66);
}
.solutions-ribbon .solution-tile:hover {
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), .96), rgba(var(--secondary-rgb), .92));
    color: #fff;
    border-color: rgba(255,255,255,.30);
    box-shadow: 0 26px 58px rgba(7, 25, 61, .22);
}
.solutions-ribbon .solution-tile:hover h3,
.solutions-ribbon .solution-tile:hover p,
.solutions-ribbon .solution-tile:hover i {
    color: #fff;
}

.brand-marquee {
    background: #111;
    border-color: rgba(255,255,255,.12);
}
.marquee-track span {
    color: #fff;
    border-right-color: rgba(255,255,255,.12);
}
.site-footer {
    color: #fff;
    background:
        radial-gradient(circle at 15% 0%, rgba(0, 0, 0, 0.24), transparent 34%),
        linear-gradient(135deg, #101010, #1f1813);
    border-top: 1px solid rgba(255,255,255,.10);
}
.brand-mark.light,
.footer-grid h3 {
    color: #fff;
}
.brand-mark.light small,
.footer-brand p,
.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: rgba(255,255,255,.66);
}
.footer-grid a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 1120px) {
    .intro-command-grid,
    .mega-panel-editorial,
    .company-editorial {
        grid-template-columns: 1fr;
    }
    .mega-feature-grid,
    .service-feature-grid,
    .mega-company-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-stage {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 720px) {
    .hero-stage {
        height: 68vh;
        min-height: 420px;
    }
    .hero-controls {
        justify-content: center;
        bottom: 22px;
    }
    .hero-prev,
    .hero-next {
        width: 42px;
        height: 42px;
    }
    .intro-command {
        padding-top: 56px;
    }
    .intro-command h1 {
        font-size: 29px;
        line-height: 1.02;
        letter-spacing: -.018em;
        overflow-wrap: anywhere;
    }
    .intro-command p {
        font-size: 15px;
    }
    .intro-metrics {
        grid-template-columns: 1fr;
    }
    .mega-menu {
        display: none;
    }
}

/* Animated networking vector system and final section motion polish */
@keyframes circuitDrift {
    0% { background-position: 0 0, 0 0, 0 0; transform: translate3d(0,0,0); }
    50% { background-position: 42px 24px, -28px 36px, 18px -20px; transform: translate3d(0,-8px,0); }
    100% { background-position: 84px 48px, -56px 72px, 36px -40px; transform: translate3d(0,0,0); }
}
@keyframes chipOrbit {
    0% { transform: rotate(0deg) scale(1); opacity: .18; }
    50% { transform: rotate(12deg) scale(1.06); opacity: .32; }
    100% { transform: rotate(0deg) scale(1); opacity: .18; }
}
@keyframes nodePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,121,37,.28); }
    50% { box-shadow: 0 0 0 14px rgba(230,121,37,0); }
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.section-pad,
.page-hero,
.intro-command {
    overflow: hidden;
}
.section-pad > .container-shell,
.page-hero > .container-shell,
.intro-command > .container-shell {
    position: relative;
    z-index: 2;
}
.section-pad::before,
.page-hero::before,
.intro-command::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .45;
    background:
        radial-gradient(circle at 18% 26%, rgba(230,121,37,.18) 0 3px, transparent 4px),
        radial-gradient(circle at 82% 38%, rgba(16,16,16,.11) 0 2px, transparent 3px),
        linear-gradient(115deg, transparent 0 21%, rgba(230,121,37,.10) 21.1% 21.28%, transparent 21.4% 100%),
        linear-gradient(24deg, transparent 0 62%, rgba(230,121,37,.10) 62.1% 62.28%, transparent 62.4% 100%);
    background-size: 220px 220px, 180px 180px, 680px 680px, 760px 760px;
    animation: circuitDrift 22s linear infinite;
}
.section-pad::after,
.page-hero::after,
.intro-command::after {
    content: "";
    position: absolute;
    right: clamp(-130px, -8vw, -70px);
    bottom: clamp(-130px, -8vw, -80px);
    width: clamp(220px, 25vw, 420px);
    height: clamp(220px, 25vw, 420px);
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(230,121,37,.16);
    border-radius: 34%;
    background:
        linear-gradient(90deg, rgba(230,121,37,.16) 1px, transparent 1px),
        linear-gradient(rgba(230,121,37,.16) 1px, transparent 1px);
    background-size: 38px 38px;
    animation: chipOrbit 13s ease-in-out infinite;
}
.solutions-ribbon::before,
.brand-marquee::before,
.site-footer::before {
    opacity: .24;
}

.feature-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    padding: 28px;
}
.feature-panel img {
    height: clamp(340px, 38vw, 470px);
    margin-bottom: 30px;
}
.feature-panel p {
    margin-bottom: 24px;
}
.feature-panel .btn {
    margin-top: auto;
    width: fit-content;
}
.feature-panel:before {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation: nodePulse 2.4s ease-in-out infinite;
}

.category-row,
.solution-tile,
.why-card,
.service-card,
.premium-card,
.blog-card,
.stat-box,
.metric-card,
.brand-logo-card,
.mega-feature-card,
.mega-company-card {
    transition:
        transform .34s cubic-bezier(.2,.8,.2,1),
        box-shadow .34s ease,
        border-color .34s ease,
        background .34s ease;
    will-change: transform;
}
.category-row:hover,
.why-card:hover,
.service-card:hover,
.premium-card:hover,
.blog-card:hover {
    transform: translateY(-10px);
}
.category-row:hover .icon-box,
.solution-tile:hover i,
.service-card:hover i,
.why-card:hover i {
    animation: nodePulse 1.8s ease-in-out infinite;
}

.brand-cloud-logo {
    display: grid !important;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 10px;
}
.brand-cloud-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 5px;
}
.brand-cloud-logo span {
    font-size: 14px;
}
.brand-marquee {
    position: relative;
}
.brand-marquee-logo {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.brand-marquee-logo img {
    width: 72px;
    height: 42px;
    object-fit: contain;
    padding: 8px 12px;
    border-radius: 14px;
    background: #fff;
    filter: saturate(.95);
    animation: logoFloat 5s ease-in-out infinite;
}
.brand-marquee-logo strong {
    color: inherit;
    font-size: 20px;
}
.brand-logo-card {
    height: 118px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff, #e7f6fc), radial-gradient(circle at top right, rgb(230 245 252), transparent 42%);
    border: 1px solid rgb(16 138 179 / 32%);
}
.brand-logo-card img {
    max-width: 72%;
    max-height: 70px;
    object-fit: contain;
    filter: saturate(.96) contrast(1.02);
}
.brand-logo-card:hover img {
    animation: logoFloat 1.7s ease-in-out infinite;
}

@media (max-width: 1120px) {
    .feature-panel img {
        height: clamp(300px, 48vw, 420px);
    }
}

@media (max-width: 720px) {
    .section-pad::after,
    .page-hero::after,
    .intro-command::after {
        width: 220px;
        height: 220px;
    }
    .feature-panel {
        padding: 22px;
    }
    .feature-panel img {
        height: 310px;
    }
    .brand-marquee-logo img {
        width: 58px;
        height: 36px;
    }
    .page-hero {
        width: 100vw;
        max-width: 100vw;
        min-height: 45vh;
        padding: 42px 0;
    }
    .page-hero > .container-shell {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }
    .page-hero .page-title {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
    .page-hero .page-title h1 {
        width: 100%;
        max-width: 340px;
        font-size: clamp(32px, 9vw, 38px);
        line-height: 1;
        overflow-wrap: anywhere;
    }
    .page-hero .page-title p {
        max-width: 340px;
        font-size: 15px;
        line-height: 1.7;
        overflow-wrap: break-word;
    }
}

@media (max-width: 370px) {
    .page-hero .page-title h1,
    .page-hero .page-title p {
        max-width: 288px;
    }
}

/* Menu parity, spacing cleanup, and footer CTA image overlay */
.products-editorial,
.brands-editorial {
    grid-template-columns: 340px 1fr;
}
.products-mega-premium {
    width: min(1320px, calc(100vw - 32px));
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    background:
        radial-gradient(circle at 16% 12%, rgba(230,121,37,.34), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(255,255,255,.10), transparent 24%),
        linear-gradient(135deg, #0d0d0d, #231c18);
    border: 1px solid rgba(255,255,255,.14);
}
.product-mega-hero {
    min-height: 322px;
    padding: 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 78% 78%, rgba(255,255,255,.24), transparent 34%),
        linear-gradient(145deg, #E67925, #c95f19 58%, #F3A15C);
}
.product-mega-hero h3 {
    max-width: 300px;
    font-size: 33px;
    line-height: .98;
}
.product-mega-hero p {
    max-width: 292px;
    font-size: 13px;
    line-height: 1.55;
}
.product-mega-stats {
    display: grid;
    gap: 8px;
    max-width: 240px;
    margin-top: 16px;
    padding: 11px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.20);
}
.product-mega-stat-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 10px;
    align-items: center;
}
.product-mega-stats strong {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}
.product-mega-stats small {
    align-self: center;
    color: rgba(255,255,255,.82);
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.product-mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.product-mega-card {
    position: relative;
    min-height: 146px;
    padding: 14px;
    gap: 12px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(54,46,41,.96), rgba(33,30,28,.96)),
        radial-gradient(circle at top right, rgba(230,121,37,.18), transparent 38%);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.product-mega-card::after {
    content: "";
    position: absolute;
    inset: auto -50px -82px auto;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.11);
}
.product-mega-card:hover {
    background:
        linear-gradient(145deg, rgba(68,55,47,.98), rgba(39,34,31,.98)),
        radial-gradient(circle at top right, rgba(230,121,37,.28), transparent 40%);
}
.product-mega-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(230,121,37,.24);
}
.product-mega-copy {
    min-width: 0;
}
.product-mega-count {
    display: none;
    margin-bottom: 8px;
    color: #F3A15C;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.product-mega-copy strong {
    display: block;
    font-size: 20px;
    line-height: 1.05;
}
.product-mega-list {
    display: grid;
    gap: 2px;
    margin-top: 8px;
}
.product-mega-list span {
    display: block;
    color: rgba(255,255,255,.72);
    font-family: Inter, sans-serif;
    font-size: 11px;
    line-height: 1.2;
}
.product-mega-copy em {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: #fff;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
}
.mega-brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.mega-brand-card {
    min-height: 116px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
    color: #fff;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
}
.mega-brand-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.12);
    border-color: rgba(230,121,37,.58);
}
.mega-brand-card img {
    width: 72px;
    height: 42px;
    object-fit: contain;
    padding: 7px 10px;
    border-radius: 12px;
    background: #fff;
}
.mega-brand-card img.brand-logo-on-dark,
.mega-brand-card .brand-logo-text.brand-logo-on-dark {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 42%),
        linear-gradient(135deg, #111, #353535);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.mega-brand-card span {
    color: rgba(255,255,255,.86);
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
}

.service-editorial {
    grid-template-columns: 360px 1fr;
}
.service-editorial .mega-spotlight {
    min-height: 285px;
}
.service-feature-grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
}
.service-feature-grid .mega-feature-card {
    min-height: 285px;
    padding: 22px;
}
.service-feature-grid .mega-feature-copy strong {
    font-size: 22px;
}
.service-feature-grid .mega-feature-copy small {
    font-size: 13px;
    line-height: 1.58;
}

.company-editorial {
    grid-template-columns: 420px 1fr;
    width: min(1120px, calc(100% - 44px));
}
.company-editorial .mega-spotlight {
    min-height: 260px;
}
.mega-company-list {
    align-items: stretch;
}
.mega-company-card {
    min-height: 260px;
}

.footer-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transform: translateY(-50%);
    margin-bottom: -70px;
    min-height: 245px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16,16,16,.84), rgba(16,16,16,.62)),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    border: 1px solid rgba(255,255,255,.16);
}
.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 88% 22%, rgba(38, 174, 242, 0.44), transparent 32%),
        linear-gradient(115deg, transparent 0 72%, rgba(37, 159, 230, 0.26) 72.2% 72.45%, transparent 72.7% 100%);
}
.footer-cta span {
    color: #F3A15C;
}
.footer-cta h2 {
    color: #fff;
}
.footer-cta .btn-light {
    color: var(--primary);
    background: #fff;
    border-color: rgba(255,255,255,.34);
}
.footer-cta {
    width: min(1080px, calc(100% - 32px));
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    padding: clamp(24px, 4vw, 40px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
}
.footer-cta > * {
    min-width: 0;
}
.footer-cta h2 {
    max-width: 680px;
}
.footer-cta .btn-light {
    justify-self: start;
    white-space: nowrap;
}
.site-footer {
    padding-top: 96px;
    overflow-x: clip;
}
.social-row a {
    color: #fff !important;
    background: rgba(255,255,255,.14) !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    opacity: 1;
}
.social-row a i {
    color: #fff;
}
.social-row a:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: translateY(-4px);
}

@media (max-width: 1120px) {
    .products-editorial,
    .brands-editorial,
    .service-editorial,
    .company-editorial {
        grid-template-columns: 1fr;
    }
    .products-mega-premium {
        width: min(980px, calc(100vw - 28px));
    }
    .product-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-mega-hero {
        min-height: 280px;
    }
    .mega-brand-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .service-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .product-mega-grid { grid-template-columns: 1fr; }
    .product-mega-hero h3 { font-size: 32px; }
    .product-mega-card { min-height: 0; }

    .footer-cta {
        transform: none !important;
        margin: 0 12px 22px !important;
        min-height: auto !important;
        padding: 16px !important;
        border-radius: 18px;
        background-size: cover;
    }
    .footer-cta h2 { font-size: clamp(18px, 4.4vw, 24px); margin: 6px 0 8px; }
    .footer-cta span { font-size: 12px; }
    .footer-cta .btn-light { padding: 10px 14px; }
    .site-footer { padding-top: 64px; }

    /* Footer grid stacking */
    .footer-grid { grid-template-columns: 1fr !important; gap: 18px !important; padding: 32px 16px !important; }
    .footer-grid > div { padding: 0; }
    .footer-bottom .container-shell { flex-direction: column; align-items: flex-start; gap: 10px; }

    /* Industries carousel: switch to native horizontal scroll on small screens */
    .industries-carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
    .industries-carousel .industries-track { display: flex; gap: 12px; align-items: center; }
    .industries-carousel .industry-slide { flex: 0 0 auto; min-width: 76px; padding: 8px 12px; }
    .industries-hero-title { font-size: clamp(20px, 6.6vw, 28px); }
    .industries-hero-intro { font-size: 15px; max-width: 100%; }
    .industries-hero-title, .industries-hero-intro { overflow-wrap: break-word; word-break: break-word; }

    @media (max-width: 480px) {
        .industries-carousel .industry-slide { min-width: 64px; padding: 8px 10px; }
        .industries-hero-title { font-size: clamp(18px, 7.8vw, 24px); }
        .footer-cta { margin-left: 10px !important; margin-right: 10px !important; }
    }
}

/* Final premium service/company refinements */
@keyframes servicePanelFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes serviceGlowTravel {
    0% { transform: translate3d(-12%, 12%, 0) rotate(0deg); opacity: .28; }
    50% { transform: translate3d(9%, -8%, 0) rotate(8deg); opacity: .48; }
    100% { transform: translate3d(-12%, 12%, 0) rotate(0deg); opacity: .28; }
}

@keyframes serviceScanline {
    0% { transform: translateX(-35%) rotate(-8deg); opacity: 0; }
    16%, 72% { opacity: .42; }
    100% { transform: translateX(135%) rotate(-8deg); opacity: 0; }
}

.service-feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}
.service-feature-grid .mega-feature-card {
    grid-column: span 2;
    min-height: 208px;
    padding: 22px;
}
.service-feature-grid .mega-feature-card:nth-child(n+4) {
    grid-column: span 3;
}

.mega-company-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 270px;
    padding: 22px;
}
.mega-company-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .42;
}
.mega-company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(1.08);
    transform: scale(1.06);
    transition: transform .45s ease, opacity .45s ease;
}
.mega-company-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(16,16,16,.18), rgba(16,16,16,.88)),
        radial-gradient(circle at 20% 14%, rgba(230,121,37,.30), transparent 34%);
}
.mega-company-card i,
.mega-company-card strong,
.mega-company-card small {
    position: relative;
    z-index: 2;
}
.mega-company-card:hover .mega-company-image img {
    transform: scale(1.12);
}

.services-showcase {
    position: relative;
    isolation: isolate;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16,16,16,.95), rgba(37,27,21,.90) 54%, rgba(16,16,16,.96)),
        url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.services-showcase::before {
    opacity: .32;
    background:
        radial-gradient(circle at 12% 18%, rgba(230,121,37,.24) 0 3px, transparent 4px),
        radial-gradient(circle at 78% 38%, rgba(255,255,255,.16) 0 2px, transparent 3px),
        linear-gradient(112deg, transparent 0 18%, rgba(230,121,37,.22) 18.1% 18.22%, transparent 18.35% 100%),
        linear-gradient(24deg, transparent 0 66%, rgba(255,255,255,.13) 66.1% 66.22%, transparent 66.35% 100%);
    background-size: 180px 180px, 220px 220px, 620px 620px, 760px 760px;
    animation: circuitDrift 18s linear infinite;
}
.services-showcase::after {
    right: auto;
    left: -160px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(230,121,37,.20);
    background: radial-gradient(circle, rgba(230,121,37,.22), transparent 64%);
    animation: serviceGlowTravel 12s ease-in-out infinite;
}
.services-showcase .section-kicker {
    color: #F3A15C;
}
.services-showcase .section-kicker span {
    background: #F3A15C;
}
.services-showcase .section-heading h2 {
    max-width: 1120px;
    color: #fff;
}
.services-showcase .service-orbit {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}
.services-showcase .service-card {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
    min-height: 286px;
    margin-top: 0;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
        radial-gradient(circle at 18% 10%, rgba(230,121,37,.18), transparent 36%);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
    animation: servicePanelFloat 7s ease-in-out infinite;
}
.services-showcase .service-card:nth-child(2) { animation-delay: .5s; }
.services-showcase .service-card:nth-child(3) { animation-delay: 1s; }
.services-showcase .service-card:nth-child(4),
.services-showcase .service-card:nth-child(5) {
    grid-column: span 3;
    animation-delay: 1.5s;
}
.services-showcase .service-card:nth-child(5) { animation-delay: 2s; }
.services-showcase .service-card:hover {
    animation: none;
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(243,161,92,.58);
    background:
        linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.07)),
        radial-gradient(circle at 18% 10%, rgba(230,121,37,.24), transparent 36%);
}
.services-showcase .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .16;
}
.services-showcase .service-card i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 18px 36px rgba(230,121,37,.30);
}
.services-showcase .service-card h3 {
    color: #fff;
}
.services-showcase .service-card p {
    max-width: 360px;
    color: rgba(255,255,255,.68);
}
.services-motion,
.services-scanline {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.services-motion {
    width: 190px;
    height: 190px;
    border: 1px solid rgba(230,121,37,.26);
    border-radius: 38px;
    background:
        linear-gradient(90deg, rgba(230,121,37,.18) 1px, transparent 1px),
        linear-gradient(rgba(230,121,37,.18) 1px, transparent 1px);
    background-size: 24px 24px;
    animation: chipOrbit 11s ease-in-out infinite;
}
.services-motion-one {
    top: 74px;
    right: 7vw;
}
.services-motion-two {
    left: 5vw;
    bottom: 70px;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    animation-duration: 15s;
    animation-delay: -4s;
}
.services-scanline {
    top: 26%;
    left: 0;
    width: 42%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243,161,92,.85), transparent);
    animation: serviceScanline 8s ease-in-out infinite;
}

@media (max-width: 1120px) {
    .service-feature-grid,
    .services-showcase .service-orbit {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-feature-grid .mega-feature-card,
    .service-feature-grid .mega-feature-card:nth-child(n+4),
    .services-showcase .service-card,
    .services-showcase .service-card:nth-child(4),
    .services-showcase .service-card:nth-child(5) {
        grid-column: auto;
    }
    .mega-company-card {
        min-height: 240px;
    }
}

@media (max-width: 720px) {
    .service-feature-grid,
    .services-showcase .service-orbit {
        grid-template-columns: 1fr;
    }
    .services-showcase {
        background-attachment: scroll;
    }
    .services-showcase .service-card {
        min-height: 235px;
        animation-duration: 9s;
    }
    .services-motion {
        opacity: .45;
    }
}

@media (max-width: 1120px) {
    .category-detail-grid,
    .product-showcase,
    .product-detail-shell {
        grid-template-columns: 1fr;
    }
    .product-detail-tabs {
        position: relative;
        top: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .product-detail-tabs button:hover,
    .product-detail-tabs button.active {
        transform: translateY(-2px);
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-gallery {
        position: relative;
        top: auto;
    }
}

@media (max-width: 720px) {
    .category-detail-media,
    .category-detail-media img {
        min-height: 320px;
    }
    .product-gallery-main {
        min-height: 0;
        padding: 14px;
    }
    .product-gallery-stage {
        min-height: 300px;
        padding: 28px 18px;
    }
    .product-gallery-main img {
        min-height: 0;
        max-height: 240px;
    }
    .product-gallery-float {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 16px;
    }
    .product-gallery-float::after {
        width: 10px;
        height: 10px;
        margin-top: -30px;
        margin-left: 26px;
    }
    .product-gallery-vector-one {
        width: 110px;
        height: 110px;
        top: 9%;
        right: 8%;
    }
    .product-gallery-vector-two {
        width: 90px;
        height: 90px;
        left: 7%;
        bottom: 12%;
    }
    .category-stat-row,
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        grid-template-columns: 1fr;
    }
    .product-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-thumbs button {
        height: 86px;
    }
    .product-info-panel,
    .product-tab-panel,
    .product-detail-panel,
    .product-card-body {
        padding: 22px;
    }
    .product-info-panel h2 {
        font-size: 38px;
    }
    .product-detail-tabs {
        grid-template-columns: 1fr;
    }
    .product-tab-panel.active {
        grid-template-columns: 1fr;
    }
    .product-tab-panel {
        min-height: 0;
    }
    .spec-table div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* Requested homepage refinements */
.top-strip {
    max-height: 44px;
    overflow: hidden;
    transition: max-height .24s ease, padding .24s ease, opacity .2s ease;
}
.site-header.is-scrolled .top-strip {
    max-height: 0;
    padding-block: 0;
    opacity: 0;
}

.mega-product-list {
    display: grid !important;
    gap: 5px;
}
.mega-product-list span {
    display: block;
    color: rgba(255,255,255,.72);
    line-height: 1.25;
}

.news-event-slider {
    position: relative;
    overflow: hidden;
    min-height: 368px;
    border-radius: 26px;
    border: 1px solid rgb(245 246 247);
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 24px 70px rgb(134 171 199);
}
.news-event-slider::before,
.news-event-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 72px;
    pointer-events: none;
}
.news-event-slider::before {
    left: 0;
    background: linear-gradient(90deg, #0c8bbd38, transparent);
}
.news-event-slider::after {
    right: 0;
    background: linear-gradient(270deg, #0c8bbd38, transparent);
}
.news-event-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 12px;
    animation: newsEventScroll 26s linear infinite;
}
.news-event-slider:hover .news-event-track {
    animation-play-state: paused;
}
.news-event-card {
    position: relative;
    flex: 0 0 248px;
    height: 344px;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
    background: #101010;
    box-shadow: 0 18px 45px rgba(16,16,16,.16);
}
.news-event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    transform: scale(1.04);
}
.news-event-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,16,16,.04), rgba(16,16,16,.76));
}
.news-event-card span,
.news-event-card h3 {
    position: absolute;
    z-index: 1;
    left: 20px;
    right: 20px;
}
.news-event-card span {
    bottom: 74px;
    color: #21daf0;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.news-event-card h3 {
    bottom: 24px;
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
}
@keyframes newsEventScroll {
    to { transform: translateX(-50%); }
}

.solutions-ribbon {
    background:
        linear-gradient(135deg, rgba(16,16,16,.84), rgba(35,25,18,.84)),
        url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1800&q=82') center/cover no-repeat;
}
.solutions-ribbon .solution-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border: 0;
    background: transparent;
    overflow: visible;
}
.solutions-ribbon .solution-tile,
.solutions-ribbon .solution-tile:nth-child(even) {
    min-height: 265px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 14px;
    padding: 28px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
    text-decoration: none;
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease,
        background .24s ease,
        color .24s ease;
}
.solutions-ribbon .solution-tile i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: white;
    color: #21daf0;
    transition:
        transform .24s ease,
        background .24s ease,
        color .24s ease,
        box-shadow .24s ease;
}
.solutions-ribbon .solution-tile h3 {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .24s ease;
}
.solutions-ribbon .solution-tile p {
    max-width: 300px;
    transition: color .24s ease;
}
.solutions-ribbon .solution-tile:hover {
    transform: translateY(-8px);
}
.solutions-ribbon .solution-tile:hover i {
    transform: translateY(-2px);
    background: rgba(255,255,255,.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.why-zone {
    background: #fff7f0;
}
.why-card {
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(145deg, var(--primary), var(--secondary)) !important;
    border-color: rgba(230,121,37,.22);
    box-shadow: 0 22px 58px rgba(230,121,37,.20);
}
.why-card:before {
    background: rgba(255,255,255,.14);
}
.why-card i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--primary);
    background: #fff;
}
.why-card h3 {
    margin-top: 24px;
    color: #fff;
}
.why-card p {
    max-width: 250px;
    color: rgba(255,255,255,.82);
}

.services-showcase {
    padding-block: 74px;
}
.services-showcase .home-service-orbit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.services-showcase .home-service-orbit .service-card,
.services-showcase .home-service-orbit .service-card:nth-child(4),
.services-showcase .home-service-orbit .service-card:nth-child(5) {
    text-align: center;
    align-items: center;
    justify-items: center;
    grid-column: auto;
    min-height: 214px;
    padding: 24px;
    animation: none;
}
.services-showcase .home-service-orbit .service-card h3 {
    margin-top: 18px;
    font-size: 25px;
}
.services-showcase .home-service-orbit .service-card p {
    font-size: 13px;
    line-height: 1.6;
}

.partners-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

@media (max-width: 1120px) {
    .solutions-ribbon .solution-map,
    .services-showcase .home-service-orbit {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .news-event-slider {
        min-height: 336px;
    }
    .news-event-card {
        flex-basis: 228px;
        height: 300px;
    }
}

@media (max-width: 720px) {
    .solutions-ribbon .solution-map,
    .services-showcase .home-service-orbit {
        grid-template-columns: 1fr;
    }
    .news-event-slider {
        min-height: 292px;
    }
    .news-event-card {
        flex-basis: 208px;
        height: 252px;
    }
    .news-event-card h3 {
        font-size: 23px;
    }
    .solutions-ribbon .solution-tile h3 {
        min-height: auto;
    }
}

/* Dynamic premium brand pages */
.brand-official-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.brand-logo-text {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 54px;
    padding: 8px;
    color: var(--primary);
    font-weight: 800;
    text-align: center;
    line-height: 1.05;
}
.brand-logo-on-dark {
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #111, #3b3b3b);
    display: inline-block;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.brand-index-card .btn {
    width: fit-content;
}
.brand-logo-card.brand-logo-card-dark,
.brand-logo-stage.brand-logo-stage-dark {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 42%),
        linear-gradient(135deg, #111, #353535);
    border-color: rgba(255,255,255,.14);
}
.brand-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 680px;
    display: grid;
    align-items: center;
    padding: 96px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16,16,16,.94), rgba(28,22,18,.88)),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=82') center/cover no-repeat;
}
.brand-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--brand-accent) 46%, transparent), transparent 32%),
        linear-gradient(115deg, transparent 0 54%, rgba(255,255,255,.10) 54.1% 54.25%, transparent 54.4% 100%);
    opacity: .8;
}
.brand-hero-bg {
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 520px;
    height: 520px;
    border-radius: 38%;
    border: 1px solid rgba(255,255,255,.14);
    background:
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
    background-size: 42px 42px;
    animation: chipOrbit 15s ease-in-out infinite;
}
.brand-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
    gap: 44px;
    align-items: center;
}
.brand-hero .breadcrumbs a,
.brand-hero .breadcrumbs span {
    color: rgba(255,255,255,.72);
}
.brand-hero .section-kicker {
    color: #F3A15C;
}
.brand-hero .section-kicker span {
    background: #F3A15C;
}
.brand-hero-copy h1 {
    max-width: 850px;
    margin-top: 18px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: .9;
    font-weight: 800;
}
.brand-hero-copy p {
    max-width: 680px;
    margin-top: 24px;
    color: rgba(255,255,255,.76);
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 1.8;
}
.brand-identity-panel {
    display: grid;
    align-content: space-between;
    gap: 24px;
    padding: 32px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.055)),
        radial-gradient(circle at top right, color-mix(in srgb, var(--brand-accent) 40%, transparent), transparent 38%);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 32px 90px rgba(0,0,0,.24);
    backdrop-filter: blur(18px);
}
.brand-logo-stage {
    height: 190px;
    display: grid;
    place-items: center;
    padding: 28px;
    border-radius: 26px;
    background: #fff;
}
.brand-hero-logo {
    max-width: 84%;
    max-height: 104px;
}
.brand-identity-panel span {
    display: block;
    color: rgba(255,255,255,.68);
    font-family: Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 800;
}
.brand-identity-panel strong {
    display: block;
    margin-top: 8px;
    font-size: 30px;
    line-height: 1;
}
.brand-overview-band {
    background: linear-gradient(180deg, #fff7f0, #fff);
}
.brand-overview-grid,
.brand-detail-matrix,
.brand-workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 30px;
    align-items: stretch;
}
.brand-overview-card,
.brand-spec-panel {
    padding: 34px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(230,121,37,.16);
    box-shadow: var(--shadow);
}
.brand-overview-card h2,
.brand-spec-panel h2,
.brand-workflow-grid h2 {
    margin-top: 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: .96;
    font-weight: 800;
}
.brand-overview-card p,
.brand-workflow-grid p {
    margin-top: 18px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.8;
}
.brand-strength-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.brand-strength-card {
    min-height: 176px;
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 26px;
    border-radius: 24px;
    color: #fff;
    background:
        linear-gradient(145deg, var(--primary), var(--secondary)),
        radial-gradient(circle at top right, rgba(255,255,255,.20), transparent 40%);
    box-shadow: 0 18px 48px rgba(230,121,37,.18);
}
.brand-strength-card i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--primary);
    background: #fff;
}
.brand-strength-card strong {
    font-size: 23px;
    line-height: 1.1;
}
.brand-category-band,
.brand-support-band {
    background: #fff;
}
.brand-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.brand-category-chip {
    min-height: 156px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 14px;
    padding: 22px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(230,121,37,.16);
    box-shadow: 0 14px 38px rgba(230,121,37,.08);
}
.brand-category-chip span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.brand-category-chip strong {
    font-size: 22px;
    line-height: 1.05;
}
.brand-products-band {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16,16,16,.94), rgba(37,27,21,.90)),
        url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1800&q=82') center/cover no-repeat;
}
.brand-products-band .section-heading h2,
.brand-products-band .section-heading p {
    color: #fff;
}
.brand-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.brand-product-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(14px);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.brand-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243,161,92,.62);
    background: rgba(255,255,255,.13);
}
.brand-product-media {
    min-height: 220px;
    height: 220px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin: 16px 16px 0;
    padding: 0;
    border-radius: 20px;
    background: #fff;
}
.brand-product-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
.brand-product-image-cover {
    object-fit: cover;
}
.brand-product-logo {
    max-width: 84%;
    max-height: 74px;
}
.brand-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 4px 22px 24px;
}
.brand-product-body span {
    display: inline-flex;
    color: #F3A15C;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.brand-product-body h3 {
    margin-top: 10px;
    color: #fff;
    font-size: 25px;
    line-height: 1.02;
    font-weight: 800;
}
.brand-product-body p {
    margin-top: 10px;
    color: rgba(255,255,255,.68);
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.65;
}
.brand-product-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 16px 35px rgba(230, 121, 37, .24);
}
.brand-product-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(230, 121, 37, .30);
}
.brand-detail-matrix-band {
    background: linear-gradient(180deg, #fff, #f7fbff);
}
.brand-detail-matrix {
    grid-template-columns: minmax(0, 1fr);
}
.brand-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin-top: 22px;
}
.brand-selection-column {
    margin-top: 0;
}
.brand-selection-column div {
    height: 100%;
}
.brand-feature-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.brand-feature-stack div {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(230,121,37,.14);
    box-shadow: 0 12px 34px rgba(230,121,37,.07);
}
.brand-feature-stack i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: var(--primary);
}
.brand-feature-stack span {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}
.brand-feature-stack small {
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: 12px;
}
.brand-usecase-band {
    background: #fff7f0;
}
.brand-usecase-grid,
.brand-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.brand-usecase-grid article,
.brand-support-grid article {
    min-height: 246px;
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(230,121,37,.16);
    box-shadow: 0 14px 40px rgba(230,121,37,.08);
}
.brand-usecase-grid i,
.brand-support-grid i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.brand-usecase-grid h3,
.brand-support-grid h3 {
    margin-top: 24px;
    font-size: 27px;
    line-height: 1.02;
    font-weight: 800;
}
.brand-usecase-grid p,
.brand-support-grid p {
    margin-top: 12px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}
.brand-workflow-band {
    color: #fff;
    background:
        radial-gradient(circle at 12% 20%, rgba(230,121,37,.28), transparent 28%),
        linear-gradient(135deg, #101010, #211a15);
}
.brand-workflow-grid p,
.brand-workflow-grid h2 {
    color: #fff;
}
.brand-timeline {
    display: grid;
    gap: 12px;
}
.brand-timeline div {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.brand-timeline span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: var(--primary);
    font-weight: 800;
}
.brand-timeline strong {
    font-size: 24px;
}
.brand-related-band {
    background: linear-gradient(180deg, #fff, #fff7f0);
}
.brand-related-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}
.brand-related-card {
    min-height: 150px;
    display: grid;
    height: 100%;
    align-content: center;
    justify-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(230,121,37,.16);
    box-shadow: 0 12px 34px rgba(230,121,37,.07);
}
.brand-related-logo {
    max-width: 100px;
    max-height: 48px;
}
.brand-related-card span {
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}
.brand-final-cta {
    padding: 70px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(230,121,37,.96), rgba(243,161,92,.92)),
        radial-gradient(circle at 90% 20%, rgba(255,255,255,.24), transparent 34%);
}
.brand-final-cta .container-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand-final-cta span {
    display: block;
    color: rgba(255,255,255,.72);
    font-family: Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 800;
}
.brand-final-cta h2 {
    margin-top: 8px;
    max-width: 780px;
    font-size: clamp(36px, 4vw, 60px);
    line-height: .95;
    font-weight: 800;
}

/* Brand logo image styling (used in header/footer) */
.brand-symbol img.brand-logo {
    width: 54px;
    height: 54px;
    display: block;
    border-radius: 14px;
    object-fit: contain;
}

.brand-subline-mb{
    color:black;
}

/* Slightly different sizing for footer light variant */
.brand-mark.light .brand-symbol img.brand-logo {
    background: transparent;
}

@media (max-width: 720px) {
    .brand-symbol img.brand-logo { width: 46px; height: 46px; border-radius: 12px; }
}

/* Full logo usage (assets/logowhite.png) - header / drawer / footer */
.brand-mark.full-logo { padding: 6px 0; }
.brand-mark.full-logo .brand-logo-full {
    display: block;
    height: 46px;
    width: auto;
    object-fit: contain;
    align-items: baseline;
    justify-content: left;
}
.site-footer .brand-mark.full-logo .brand-logo-full {
    height: 60px;
}

@media (max-width: 1120px) {
    .brand-mark.full-logo .brand-logo-full { height: 44px; }
}
@media (max-width: 720px) {
    .brand-mark.full-logo .brand-logo-full { height: 34px; }
}

/* Subline under full logo */
.brand-mark.full-logo { display: inline-flex; flex-direction: column; align-items: baseline; gap: 6px; }
.brand-mark.full-logo .brand-subline {
    display: block;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.brand-mark.light.full-logo .brand-subline { color: rgba(255,255,255); }

@media (max-width: 720px) {
    .brand-mark.full-logo .brand-subline { font-size: 12px; }
}

/* Team section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    margin-top: 18px;
}
.team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 26px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #fffaf7);
    border: 1px solid rgba(230,121,37,.08);
    box-shadow: 0 20px 48px rgba(16,16,16,.04);
    text-align: center;
}
.team-card-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(13,176,222,.12), transparent 44%),
        linear-gradient(180deg, #f7fbff, #eef4fb);
    box-shadow: inset 0 0 0 1px rgba(10,36,99,.06);
}
.team-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.team-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding-top: 18px;
}
.team-card h3 { margin-top: 0; font-size: 20px; font-weight: 800; }
.team-card .role { margin-top: 8px; color: var(--muted); font-family: Inter, sans-serif; font-weight: 700; }
.team-card .avatar {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: clamp(44px, 8vw, 84px);
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: none;
}

@media (max-width: 1120px) {
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card { padding: 20px; }
    .team-card-content { padding-top: 16px; }
}

@media (max-width: 1120px) {
    .brand-hero-grid,
    .brand-overview-grid,
    .brand-detail-matrix,
    .brand-workflow-grid {
        grid-template-columns: 1fr;
    }
    .brand-selection-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .brand-category-grid,
    .brand-product-grid,
    .brand-related-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .brand-feature-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .brand-hero {
        min-height: auto;
        padding: 56px 0;
    }
    .brand-hero-copy h1 {
        font-size: 36px;
        line-height: .98;
    }
    .brand-identity-panel,
    .brand-overview-card,
    .brand-spec-panel {
        padding: 22px;
        border-radius: 24px;
    }
    .brand-strength-grid,
    .brand-category-grid,
    .brand-product-grid,
    .brand-usecase-grid,
    .brand-support-grid,
    .brand-related-row {
        grid-template-columns: 1fr;
    }
    .brand-feature-stack div {
        grid-template-columns: 48px 1fr;
    }
    .brand-feature-stack small {
        grid-column: 2;
    }
    .brand-final-cta .container-shell {
        display: grid;
    }
}

/* New premium detail-cards layout */
.detail-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}
.detail-card {
    background: linear-gradient(180deg, #ffffff, #fffaf4);
    border-radius: 22px;
    padding: 34px;
    border: 1px solid rgba(230,121,37,.08);
    box-shadow: 0 30px 70px rgba(16,16,16,.06);
    position: relative;
    overflow: hidden;
    transition: transform .36s cubic-bezier(.2,.8,.2,1), box-shadow .36s ease;
}
.detail-card:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: .95;
    transform-origin: left center;
}
.detail-card:hover { transform: translateY(-12px); box-shadow: 0 46px 110px rgba(16,16,16,.12); }
.detail-card .section-kicker { margin-bottom: 10px; display:block; }
.detail-card h2 { font-size: 34px; margin-top: 6px; }
.detail-card p { color: var(--muted); line-height: 1.8; margin-top: 14px; }
.detail-card .spec-table { margin-top: 12px; }
.detail-card.accent {
    background: linear-gradient(135deg, #24130b, #0f0f0f);
    color: #fff;
    border-color: rgba(255,255,255,.06);
    box-shadow: 0 36px 120px rgba(16,16,16,.28);
}
.detail-card.accent:before { background: rgba(255,255,255,.06); width: 6px; }
.detail-card.accent p, .detail-card.accent .section-kicker { color: rgba(255,255,255,.84); }
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid rgba(230,121,37,.12);
}
.detail-toggle {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: var(--primary);
    color: #fff;
    border: 0;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}
.detail-card.is-open { box-shadow: 0 60px 150px rgba(16,16,16,.22); transform: none; }
@media (max-width: 980px) {
    .detail-cards { grid-template-columns: 1fr; padding: 0 8px; }
    .detail-card { padding: 20px; }
    .detail-card h2 { font-size: 28px; }
    .detail-card:before { display: none; }
    .detail-toggle { right: 16px; bottom: 16px; }
}

/* Stacked, distinct detail sections (description / specs / datasheet) */
.detail-section { padding-block: 64px; }
.detail-panel { padding: 28px; border-radius: 20px; background: linear-gradient(180deg, #ffffff, #fffaf6); border: 1px solid rgba(230,121,37,.06); box-shadow: 0 26px 60px rgba(16,16,16,.06); }
.detail-panel .section-kicker { color: var(--primary); }
.description-panel { display: block; border-left: 6px solid var(--primary); padding-left: 28px; }
.description-panel h2 { font-size: 42px; line-height: 1.02; margin-top: 6px; margin-bottom: 12px; font-weight: 900; }
.detail-panel-body p { color: var(--muted); margin-top: 12px; max-width: 920px; }

.spec-panel { background: linear-gradient(180deg, #fff, #fff7f3); padding: 32px; border-radius: 18px; border: 1px solid rgba(230,121,37,.06); box-shadow: 0 18px 48px rgba(16,16,16,.05); }
.spec-panel h2 { font-size: 32px; margin-top: 6px; }
.spec-panel-inner { margin-top: 12px; }
.spec-table.spacious { display: grid; gap: 18px; }
.spec-row { display: grid; grid-template-columns: 220px 1fr; gap: 18px; align-items: start; padding: 14px 0; border-bottom: 1px solid rgba(230,121,37,.06); }
.spec-row dt { font-weight: 900; color: var(--ink); }
.spec-row dd { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.6; }

.datasheet-panel { border-radius: 22px; padding: 36px; background: linear-gradient(145deg, #24130b, #0f0f0f); color: #fff; box-shadow: 0 36px 110px rgba(16,16,16,.28); border: 1px solid rgba(255,255,255,.06); }
.datasheet-panel h2 { color: #fff; }
.datasheet-panel p { color: rgba(255,255,255,.78); max-width: 780px; }
.datasheet-actions { margin-top: 20px; display: flex; gap: 12px; align-items: center; }
.datasheet-actions .btn-pill { background: #fff; color: var(--primary); border: 1px solid rgba(230,121,37,.12); }

@media (max-width: 980px) {
    .detail-section { padding-block: 36px; }
    .description-panel h2 { font-size: 28px; }
    .spec-row { grid-template-columns: 1fr; }
    .spec-row dt { margin-bottom: 6px; }
    .datasheet-panel { padding: 22px; }
}

/* Industries hero — premium homepage section */
.industries-hero {
    background: linear-gradient(180deg, #fff, #f8fbff);
    position: relative;
}
.industries-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 8% 20%, rgba(230,121,37,.06) 0 8px, transparent 12px),
        linear-gradient(135deg, rgba(230,121,37,.02), transparent 28%);
    pointer-events: none;
    z-index: 0;
}
.industries-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; position: relative; z-index: 2; }
.industries-hero-grid > * { min-width: 0; }
.industries-hero-copy { max-width: 740px; min-width: 0; }
.industries-hero-title { font-size: clamp(32px, 4.6vw, 56px); line-height: .94; font-weight: 900; margin-top: 8px; color: var(--ink); }
.industries-hero-intro { margin-top: 18px; color: var(--muted); font-family: Inter, sans-serif; font-size: 18px; line-height: 1.85; max-width: 720px; }
.industries-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.industries-pills .pill { padding: 12px 18px; background: #fff; border-radius: 999px; border: 1px solid rgba(230,121,37,.08); font-weight: 800; color: var(--ink); box-shadow: 0 12px 28px rgba(230,121,37,.04); }
.industries-pills .pill:nth-child(odd) { background: linear-gradient(180deg, #fff, #fffaf6); }
.industries-cta { margin-top: 26px; display: flex; gap: 12px; align-items: center; }

.industries-hero-card {
    border-radius: 28px;
    padding: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,250,247,.98));
    border: 1px solid rgba(230,121,37,.08);
    box-shadow: 0 36px 90px rgba(16,16,16,.06);
    display: grid;
    gap: 12px;
    align-items: start;
    min-width: 0;
    width: 100%;
}
.industries-hero-card .card-graphic { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-size: 28px; box-shadow: 0 18px 40px rgba(230,121,37,.12); }
.industries-hero-card .card-title { font-size: 28px; font-weight: 900; margin-top: 6px; color: var(--ink); overflow-wrap: anywhere; }
.industries-hero-card .card-lead { color: var(--muted); margin-top: 8px; line-height: 1.7; }
.industries-hero-card .card-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.industries-hero-card .btn-pill { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border: 0; }

@media (max-width: 1120px) {
    .industries-hero-grid { grid-template-columns: 1fr; gap: 22px; }
    .industries-hero-card { order: 0; }
    .industries-hero-copy { text-align: left; }
    .footer-cta {
        width: min(980px, calc(100% - 28px));
        max-width: calc(100vw - 28px);
        transform: none;
        margin-bottom: 28px;
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 720px) {
    .industries-hero { padding: 48px 0; }
    .industries-hero-title { font-size: 28px; }
    .industries-pills .pill { padding: 10px 14px; font-size: 14px; }
    .industries-hero-card { padding: 20px; border-radius: 18px; }
    .industries-cta,
    .industries-hero-card .card-actions { flex-wrap: wrap; }
    .industries-cta .btn,
    .industries-hero-card .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-cta {
        width: calc(100% - 24px) !important;
        max-width: calc(100vw - 24px);
        margin: 0 auto 22px !important;
        padding: 20px !important;
        border-radius: 22px;
    }
    .footer-cta .btn-light {
        width: 100%;
        justify-content: center;
    }
}

/* Reveal state used by JS when element enters viewport */
.industries-hero-card { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.9,.2,1); }
.industries-hero-card.is-revealed { opacity: 1; transform: none; }

/* Industries carousel (icon + name row) */
.industries-carousel-wrap { margin-top: 18px; max-width: 100%; overflow: hidden; }
.industries-carousel { overflow: hidden; padding: 8px 0; max-width: 100%; }
.industries-track { display: flex; gap: 12px; align-items: center; width: max-content; white-space: nowrap; flex-wrap: nowrap; will-change: transform; }
.industry-slide {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(230,121,37,.06);
    box-shadow: 0 12px 28px rgba(230,121,37,.04);
    font-weight: 800;
    color: var(--ink);
    cursor: pointer;
    transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease;
    white-space: nowrap;
}
.industry-slide i { width: 34px; height: 34px; display: grid; place-items: center; color: var(--primary); font-size: 16px; }
.industry-name { font-size: 15px; }
.industry-slide:hover { transform: translateY(-6px); box-shadow: 0 22px 56px rgba(16,16,16,.08); }
.industry-slide:focus { outline: 3px solid rgba(230,121,37,.08); outline-offset: 3px; }

@media (max-width: 720px) {
    .industry-slide { padding: 8px 12px; gap: 8px; }
    .industry-name { font-size: 13px; }
    .industries-carousel { overflow: hidden; }
    .industries-track { gap: 10px; }
}

/* Premium solutions pages */
.solution-premium-band {
    background: radial-gradient(circle at 10% 10%, rgb(34 157 195 / 8%), transparent 24%), linear-gradient(180deg, #fff, #1f97bf03);
}
.solution-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 34px;
    align-items: start;
}
.solution-premium-copy,
.solution-premium-aside,
.solution-architecture-card,
.solution-stack-panel,
.solution-context-panel,
.solution-final-card,
.solution-index-card,
.solution-index-cta {
    border: 1px solid rgb(229 231 234);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 56px rgba(16,16,16,.06);
}
.solution-premium-copy {
    padding: 34px;
}
.solution-premium-copy h2 {
    margin-top: 10px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: .95;
    font-weight: 800;
}
.solution-premium-copy p {
    margin-top: 14px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.8;
}
.solution-premium-aside {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}
.solution-media-shell {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}
.solution-media-shell img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.solution-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.solution-stat-card {
    padding: 18px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgb(248 250 252), rgb(224 240 246));
    text-align: center;
}
.solution-stat-card strong {
    display: block;
    color: var(--primary);
    font-size: 28px;
    line-height: 1;
}
.solution-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.45;
}
.solution-capability-band {
    background: linear-gradient(180deg, #f5f8fb, #fff);
}
.solution-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.solution-capability-card {
    min-height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #fff8f2);
    border: 1px solid rgba(230,121,37,.10);
    box-shadow: 0 20px 52px rgba(16,16,16,.05);
    text-align: center;
}
.solution-capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 68px rgba(16,16,16,.10);
}
.solution-capability-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 22px;
    box-shadow: 0 18px 34px rgba(230,121,37,.18);
}
.solution-capability-card h3 {
    margin-top: 18px;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}
.solution-capability-card p {
    margin-top: 12px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.75;
    max-width: 420px;
}
.solution-architecture-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(230,121,37,.26), transparent 24%),
        radial-gradient(circle at bottom right, rgba(243,161,92,.16), transparent 22%),
        linear-gradient(135deg, #111111, #171717 52%, #22180f);
}
.solution-architecture-band:before,
.solution-family-band:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,.05), transparent 28%, transparent 72%, rgba(230,121,37,.08)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 120px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 120px);
    pointer-events: none;
}
.solution-architecture-band .container-shell,
.solution-family-band .container-shell {
    position: relative;
    z-index: 1;
}
.solution-architecture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.solution-architecture-card,
.solution-context-panel,
.solution-final-card,
.solution-index-cta {
    padding: 32px;
}
.solution-architecture-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(17,17,17,.90), rgba(32,20,12,.96));
    border: 1px solid rgba(230,121,37,.24);
    box-shadow: 0 28px 68px rgba(0,0,0,.26);
}
.solution-architecture-card h2,
.solution-context-panel h2,
.solution-final-card h2 {
    margin-top: 10px;
    font-size: clamp(30px, 3.1vw, 46px);
    line-height: .98;
    font-weight: 800;
}
.solution-architecture-card .section-label,
.solution-stack-panel span,
.solution-family-band .section-label {
    color: #ff9d46;
}
.solution-architecture-card .section-label:before,
.solution-family-band .section-label:before {
    background: linear-gradient(90deg, #ff7a1a, #ffb15f);
}
.solution-architecture-card h2,
.solution-stack-panel h3,
.solution-family-band .section-heading h2,
.solution-family-card h3 {
    color: #fff;
}
.solution-architecture-card .product-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}
.solution-architecture-card .product-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(230,121,37,.12));
    color: #fff;
    font-weight: 700;
    line-height: 1.6;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.solution-architecture-card .product-feature-list li i {
    margin-top: 4px;
    color: #ff8e32;
}
.solution-architecture-stack {
    display: grid;
    gap: 18px;
    min-height: 100%;
}
.solution-stack-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 28px;
    background: linear-gradient(180deg, rgba(20,20,20,.92), rgba(32,21,13,.98));
    border: 1px solid rgba(230,121,37,.22);
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.solution-stack-panel span {
    display: inline-block;
    font-family: Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 800;
}
.solution-mini-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.solution-mini-list li {
    position: relative;
    padding-left: 18px;
    color: #5b6f97;
    font-family: Inter, sans-serif;
    line-height: 1.7;
}
.solution-mini-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff8a2b;
}
.solution-context-band {
    background: linear-gradient(180deg, #fffaf5, #fff);
}
.solution-context-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.solution-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.solution-chip-grid span {
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(230,121,37,.08);
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
}
.solution-family-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(230,121,37,.22), transparent 22%),
        radial-gradient(circle at bottom left, rgba(243,161,92,.14), transparent 20%),
        linear-gradient(135deg, #0f0f0f, #171717 52%, #23170d);
}
.solution-family-band .section-heading {
    align-items: end;
}
.solution-family-band .section-heading p {
    color: rgba(255,255,255,.72);
    max-width: 520px;
}
.solution-family-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.solution-family-card {
    display: block;
    min-height: 100%;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(230,121,37,.10)),
        linear-gradient(135deg, rgba(17,17,17,.96), rgba(28,19,12,.98));
    border: 1px solid rgba(230,121,37,.22);
    box-shadow: 0 22px 54px rgba(0,0,0,.22);
}
.solution-family-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,165,84,.44);
    box-shadow: 0 30px 74px rgba(0,0,0,.28);
}
.solution-family-card h3 {
    margin-top: 18px;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}
.solution-family-card p {
    margin-top: 12px;
    color: rgba(255,255,255,.78);
    font-family: Inter, sans-serif;
    line-height: 1.75;
}
.solution-family-card .icon-box {
    background: linear-gradient(135deg, rgba(255,145,52,.18), rgba(255,255,255,.08));
    color: #ff8c30;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 38px rgba(0,0,0,.24);
}
.solution-family-card:hover .icon-box {
    transform: scale(1.04);
}
.solution-final-band {
    background: linear-gradient(180deg, #fff7f1, #fff);
}
.solution-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.solution-final-card p,
.solution-index-cta p {
    margin-top: 12px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.8;
    max-width: 720px;
}
.solution-index-band {
    background: linear-gradient(180deg, #fff, #fff8f2);
}
.solution-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.solution-index-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.solution-index-media {
    display: block;
    height: 240px;
    overflow: hidden;
}
.solution-index-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-index-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}
.solution-index-body h3 {
    margin-top: 14px;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}
.solution-index-body h3 a {
    color: var(--ink);
}
.solution-index-body p {
    margin-top: 12px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    line-height: 1.75;
}
.solution-index-cta {
    margin-top: 28px;
    text-align: center;
}
.solution-index-cta h3 {
    font-size: clamp(30px, 3vw, 42px);
    line-height: .98;
    font-weight: 800;
}

@media (max-width: 1120px) {
    .solution-premium-grid,
    .solution-architecture-grid,
    .solution-context-grid {
        grid-template-columns: 1fr;
    }
    .solution-family-band .section-heading {
        align-items: start;
    }
    .solution-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .solution-premium-copy,
    .solution-premium-aside,
    .solution-capability-card,
    .solution-architecture-card,
    .solution-stack-panel,
    .solution-context-panel,
    .solution-family-card,
    .solution-final-card,
    .solution-index-card,
    .solution-index-cta {
        padding: 22px;
        border-radius: 24px;
    }
    .solution-media-shell img,
    .solution-index-media {
        height: 220px;
    }
    .solution-stat-grid,
    .solution-capability-grid,
    .solution-family-grid,
    .solution-index-grid {
        grid-template-columns: 1fr;
    }
    .solution-architecture-card .product-feature-list li {
        padding: 16px 18px;
    }
    .solution-final-card {
        display: grid;
    }
}

/* 2026 palette refresh: white sections stay white, warm light sections shift to #F7FAFF,
   and dark feature sections use the brand blue-to-cyan gradient consistently. */
.site-orbit {
    background:
        radial-gradient(circle at 8% 18%, rgba(var(--secondary-rgb), .12), transparent 28%),
        radial-gradient(circle at 92% 5%, rgba(var(--primary-rgb), .12), transparent 24%),
        linear-gradient(180deg, #fff 0%, var(--mist) 45%, #fff 100%);
}

.site-header {
    background: #fff;
}

.top-strip {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-bottom: 0;
}

.top-strip a,
.top-strip p {
    color: #fff;
}

.top-strip i {
    color: var(--icon-accent);
}

.nav-wrap {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(var(--primary-rgb), .08);
}

.site-header.is-scrolled .nav-wrap {
    box-shadow: 0 18px 46px rgba(var(--primary-rgb), .14);
}

.brand-mark,
.brand-mark strong,
.brand-mark.full-logo .brand-subline,
.nav-item > a {
    color: var(--primary);
}

.brand-mark small {
    color: var(--muted);
}

.nav-item > a.active,
.nav-item > a:hover {
    color: var(--secondary);
}

.nav-item > a i {
    color: inherit;
}

.menu-toggle span {
    background: var(--primary);
}

.mega-panel,
.mega-panel-editorial,
.brand-cloud a,
.mega-card,
.premium-card,
.why-card,
.service-card,
.contact-form,
.stats-panel,
.category-row,
.solution-index-card,
.detail-card,
.detail-panel,
.spec-panel,
.product-panel-aside,
.product-tab-aside,
.product-spec-grid,
.product-feature-list li {
    border-color: rgba(var(--primary-rgb), .12);
    box-shadow: 0 18px 46px rgba(var(--primary-rgb), .07);
}

.category-showcase,
.about-band,
.brand-detail-matrix-band,
.brand-related-band,
.solution-final-band,
.solution-index-band,
.industries-hero,
.product-band,
.products-grid-section {
    background: linear-gradient(180deg, #fff, var(--mist));
}

.why-zone,
.brand-usecase-band,
.product-feature-list li,
.product-panel-aside,
.product-tab-aside,
.product-spec-grid {
    background: var(--mist);
}

.mega-intro,
.feature-panel,
.tech-card,
.contact-info,
.blog-card:first-child,
.product-tab-panel-dark,
.solutions-ribbon,
.services-showcase,
.brand-products-band,
.brand-workflow-band,
.brand-final-cta,
.solution-architecture-band,
.solution-family-band,
.detail-card.accent,
.datasheet-panel,
.footer-cta,
.products-mega-premium,
.product-mega-hero,
.brand-marquee,
.solution-index-cta {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), .98), rgba(var(--secondary-rgb), .92));
}

.page-hero {
    color: #fff;
    background-image:
        linear-gradient(90deg, rgba(var(--primary-rgb), .90) 0%, rgba(var(--primary-rgb), .72) 42%, rgba(var(--secondary-rgb), .42) 100%),
        linear-gradient(135deg, rgba(var(--primary-rgb), .94), rgba(var(--secondary-rgb), .78)),
        var(--page-hero-image);
}

.page-hero .section-kicker,
.page-hero .breadcrumbs li:not(:last-child):after {
    color: var(--icon-accent);
}

.page-hero .section-kicker span {
    background: var(--icon-accent);
}

.solutions-ribbon .section-heading h2,
.solutions-ribbon .section-heading p,
.services-showcase .section-heading h2,
.brand-products-band .section-heading h2,
.brand-products-band .section-heading p,
.brand-workflow-grid h2,
.brand-workflow-grid p,
.brand-final-cta h2,
.brand-final-cta p,
.product-tab-panel-dark h2,
.product-tab-panel-dark h3,
.datasheet-panel h2,
.datasheet-panel p,
.detail-card.accent h2,
.detail-card.accent p,
.detail-card.accent .section-kicker,
.solution-architecture-card h2,
.solution-family-band .section-heading h2,
.solution-family-band .section-heading p,
.solution-family-card h3,
.solution-family-card p,
.site-footer .footer-grid h3,
.site-footer .footer-brand p,
.site-footer .footer-grid p,
.site-footer .footer-grid a,
.site-footer .footer-bottom,
.site-footer .brand-mark.light,
.site-footer .brand-mark.light small,
.site-footer .brand-mark.light.full-logo .brand-subline,
.footer-cta h2,
.footer-cta span,
.footer-cta .btn-light,
.contact-info h2,
.contact-info p,
.contact-method span,
.contact-method i,
.brand-product-body h3,
.brand-product-body p,
.brand-product-body span,
.mega-intro h3,
.mega-intro p,
.feature-panel h3,
.feature-panel p,
.tech-card h3,
.tech-card p,
.blog-card:first-child h3,
.blog-card:first-child p,
.blog-card:first-child .meta,
.solution-index-cta h3,
.solution-index-cta p {
    color: #fff;
}

.footer-cta span,
.mega-intro span,
.services-showcase .section-kicker,
.solution-architecture-card .section-label,
.solution-stack-panel span,
.solution-family-band .section-label,
.brand-product-body span {
    color: rgba(255,255,255,.86);
}

.site-footer {
    border-top: 0;
}

.footer-cta {
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 24px 80px rgba(var(--primary-rgb), .22);
}

.site-footer .footer-grid a:hover,
.site-footer .footer-bottom a:hover {
    color: var(--icon-accent);
}

.btn-primary,
.btn-light,
.feature-panel .btn-light,
.brand-product-cta,
.brand-final-cta .btn,
.contact-form .btn,
.datasheet-actions .btn-pill,
.solution-final-card .btn,
.solution-index-cta .btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-color: transparent;
}

.btn-outline {
    color: var(--primary);
    border-color: rgba(var(--primary-rgb), .18);
}

.datasheet-actions .btn-pill,
.site-footer .btn-light {
    background: #fff;
    color: var(--primary);
}

.social-row a,
.solution-family-card .icon-box,
.product-mega-icon,
.mega-feature-icon,
.brand-category-chip i,
.brand-usecase-grid i,
.brand-support-grid i,
.brand-feature-stack i,
.services-showcase .service-card i,
.industry-slide i {
    color: var(--icon-accent);
    background: rgba(var(--icon-rgb), .12);
    box-shadow: none;
}

.mega-card i,
.floating-spec i,
.section-kicker,
.category-row i,
.category-row .arrow,
.solution-tile i,
.check-grid i,
.why-card i,
.service-card i,
.product-feature-list i,
.product-panel-aside i,
.product-spec-grid i,
.product-tab-aside i,
.contact-method i,
.product-card-cta i,
.industry-slide i,
.brand-related-card i,
.solution-architecture-card .product-feature-list li i {
    color: var(--icon-accent);
}

.category-row .arrow,
.solution-tile:hover,
.solutions-ribbon .solution-tile,
.services-showcase .service-card,
.product-mega-card,
.solution-architecture-card,
.solution-stack-panel,
.solution-family-card,
.brand-product-card,
.brand-timeline div {
    border-color: rgba(255,255,255,.18);
}

.solutions-ribbon .solution-map,
.solutions-ribbon .solution-tile,
.services-showcase .service-card,
.product-tab-panel-dark .product-tab-aside,
.product-tab-panel-dark .product-tab-list li,
.brand-product-card,
.brand-timeline div,
.solution-architecture-card .product-feature-list li,
.solution-family-card {
    background: rgba(255,255,255,.10);
}

.brand-product-media,
.solution-index-media,
.detail-media,
.premium-card,
.contact-form,
.datasheet-actions .btn-pill,
.site-footer .btn-light {
    background-color: #fff;
}

/* Final consistency pass for remaining mega menus, CTAs, bullets, hover states, and light surfaces */
.section-kicker,
.product-card-kicker,
.solution-architecture-card .section-label,
.solution-family-band .section-label,
.solution-stack-panel > span,
.mega-spotlight span,
.product-mega-count {
    color: var(--icon-accent);
}

.section-kicker span,
.page-hero .section-kicker span,
.services-showcase .section-kicker span,
.solution-architecture-card .section-label:before,
.solution-family-band .section-label:before {
    background: var(--icon-accent);
}

.mega-spotlight,
.service-editorial .mega-spotlight,
.company-editorial .mega-spotlight {
    background:
        radial-gradient(circle at bottom right, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(135deg, rgba(var(--primary-rgb), .98), rgba(var(--secondary-rgb), .92));
    color: #fff;
}

.mega-spotlight:after {
    border-color: rgba(255,255,255,.22);
}

.mega-spotlight h3,
.mega-spotlight p,
.mega-spotlight-link,
.mega-brand-card span,
.mega-feature-copy strong,
.mega-feature-copy small,
.mega-company-card strong,
.mega-company-card small {
    color: #fff;
}

.mega-spotlight-link i,
.product-mega-copy em i {
    color: var(--icon-accent);
}

.mega-feature-card,
.mega-company-card,
.mega-brand-card,
.service-feature-grid .mega-feature-card {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.14);
    color: #fff;
    box-shadow: 0 18px 44px rgba(var(--primary-rgb), .16);
}

.mega-feature-card:hover,
.mega-company-card:hover,
.mega-brand-card:hover,
.service-feature-grid .mega-feature-card:hover,
.product-mega-card:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(var(--secondary-rgb), .52);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), .22);
}

.mega-feature-icon,
.mega-company-card i,
.product-mega-icon,
.service-feature-grid .mega-feature-icon {
    color: var(--icon-accent);
    background: rgba(var(--icon-rgb), .14);
    box-shadow: 0 10px 28px rgba(var(--primary-rgb), .14);
}

.products-mega-premium {
    background:
        radial-gradient(circle at 16% 12%, rgba(var(--secondary-rgb), .20), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(255,255,255,.08), transparent 24%),
        linear-gradient(135deg, rgba(var(--primary-rgb), .99), rgba(var(--secondary-rgb), .92));
    border-color: rgba(255,255,255,.16);
}

.product-mega-hero {
    background:
        radial-gradient(circle at 78% 78%, rgba(255,255,255,.20), transparent 34%),
        linear-gradient(135deg, rgba(var(--primary-rgb), .94), rgba(var(--secondary-rgb), .90));
}

.product-mega-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.06)),
        linear-gradient(135deg, rgba(var(--primary-rgb), .58), rgba(var(--secondary-rgb), .42));
    border-color: rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.product-mega-list span,
.product-mega-stats small,
.product-mega-copy em,
.mega-brand-card span {
    color: rgba(255,255,255,.88);
}

.premium-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 16px 35px rgba(var(--primary-rgb), .24);
}

.premium-card .btn-outline:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 22px 45px rgba(var(--primary-rgb), .30);
}

.btn-primary,
.product-card-cta,
.brand-product-cta,
.solution-index-cta .btn,
.brand-final-cta .btn,
.contact-form .btn,
.feature-panel .btn-light {
    box-shadow: 0 16px 35px rgba(var(--primary-rgb), .24);
}

.btn-primary:hover,
.product-card-cta:hover,
.brand-product-cta:hover,
.solution-index-cta .btn:hover,
.brand-final-cta .btn:hover,
.contact-form .btn:hover,
.feature-panel .btn-light:hover {
    box-shadow: 0 22px 45px rgba(var(--primary-rgb), .30);
}

.category-row:hover,
.why-card:hover,
.service-card:hover,
.premium-card:hover,
.blog-card:hover,
.product-card:hover,
.solution-capability-card:hover,
.solution-family-card:hover,
.brand-product-card:hover,
.mega-feature-card:hover,
.mega-company-card:hover,
.mega-brand-card:hover {
    border-color: rgba(var(--secondary-rgb), .36);
    box-shadow: 0 24px 60px rgba(var(--primary-rgb), .16);
}

.category-row:hover .icon-box,
.solution-tile:hover i,
.service-card:hover i,
.why-card:hover i,
.solution-family-card:hover .icon-box {
    color: var(--icon-accent);
}

.solution-tile:hover,
.product-tab-panel-dark .product-tab-aside,
.product-tab-panel-dark .product-tab-list li,
.solutions-ribbon .solution-map,
.solutions-ribbon .solution-tile,
.services-showcase .service-card,
.brand-product-card,
.brand-timeline div,
.solution-architecture-card .product-feature-list li,
.solution-family-card {
    border-color: rgba(255,255,255,.16);
}

.product-card-image,
.solution-capability-card .icon-box,
.industries-hero-card .card-graphic,
.solution-family-card .icon-box,
.industry-slide i,
.category-row .arrow,
.solution-chip-grid span,
.pill-list span,
.pill-list a,
.industry-list span {
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), .10);
}

.product-card-image,
.hero-premium-carousel,
.solution-context-band,
.solution-final-band,
.solution-index-band,
.brand-detail-matrix-band,
.brand-usecase-band,
.brand-related-band,
.solution-context-panel,
.detail-panel,
.spec-panel,
.industry-slide,
.solution-capability-card {
    background: linear-gradient(180deg, #fff, var(--mist));
}

.hero-premium-carousel {
    background:
        radial-gradient(circle at 11% 16%, rgba(var(--secondary-rgb), .12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(var(--primary-rgb), .10), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, var(--mist) 54%, #ffffff 100%);
}

.hero-circuit {
    background:
        linear-gradient(110deg, transparent 0 18%, rgba(var(--secondary-rgb), .12) 18.1% 18.25%, transparent 18.4% 100%),
        linear-gradient(18deg, transparent 0 63%, rgba(var(--primary-rgb), .10) 63.1% 63.25%, transparent 63.4% 100%);
}

.hero-slide-shade {
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 35%, rgba(255,255,255,.34) 72%, rgba(255,255,255,.64) 100%),
        radial-gradient(circle at 72% 18%, rgba(var(--secondary-rgb), .18), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.58));
}

.hero-slide:before {
    background-image:
        linear-gradient(rgba(var(--primary-rgb), .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), .045) 1px, transparent 1px);
}

.hero-content p,
.product-card p,
.premium-card p,
.detail-copy p,
.solution-index-body p,
.solution-capability-card p,
.category-row p,
.about-copy p,
.page-title p {
    color: var(--muted);
}

.product-panel-aside li {
    color: var(--primary);
}

.product-mega-list span {
    color: rgba(255,255,255,.84);
}

.product-card li i,
.check-grid i,
.spec-list i,
.product-feature-list i,
.product-panel-aside i,
.product-spec-grid i,
.solution-architecture-card .product-feature-list li i,
.solution-mini-list li:before,
.services-showcase .section-kicker,
.brand-hero .section-kicker,
.page-hero .section-kicker,
.mega-spotlight-link i,
.product-mega-copy em i {
    color: var(--icon-accent);
}

.solution-mini-list li:before {
    background: var(--icon-accent);
}

.product-feature-list li,
.solution-chip-grid span,
.pill-list span,
.pill-list a,
.industry-list span,
.product-panel-aside,
.product-tab-aside,
.product-spec-grid {
    background: var(--mist);
    border-color: rgba(var(--primary-rgb), .12);
    color: var(--primary);
}

.product-feature-list li,
.product-panel-aside li,
.product-spec-grid div,
.product-card ul,
.spec-row dd,
.industry-slide,
.solution-chip-grid span,
.pill-list span,
.pill-list a {
    color: var(--primary);
}

/* Final blue-system cleanup for mega menus, contact values, brand detail shadows, and pale backgrounds */
.mega-panel-editorial,
.brands-editorial,
.service-editorial,
.company-editorial {
    background:
        radial-gradient(circle at 16% 12%, rgba(var(--secondary-rgb), .20), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(255,255,255,.08), transparent 24%),
        linear-gradient(135deg, rgba(var(--primary-rgb), .99), rgba(var(--secondary-rgb), .92));
    border-color: rgba(255,255,255,.14);
    box-shadow: 0 28px 90px rgba(var(--primary-rgb), .20);
}

.contact-method {
    border-bottom-color: rgba(255,255,255,.16);
}

.contact-method i,
.contact-method span {
    color: var(--icon-accent);
}

.contact-method strong {
    color: #fff;
}

.contact-info h2,
.contact-info p {
    color: #fff;
}

.premium-card {
    display: flex;
    flex-direction: column;
}

.premium-card-body {
    flex: 1;
}

.premium-card .product-card-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
}

.brand-hero .section-kicker,
.brand-hero .section-kicker span,
.page-hero .section-kicker,
.page-hero .section-kicker span,
.services-showcase .section-kicker,
.services-showcase .section-kicker span {
    color: var(--icon-accent);
}

.brand-hero .section-kicker span,
.page-hero .section-kicker span,
.services-showcase .section-kicker span {
    background: var(--icon-accent);
}

.brand-overview-band,
.brand-detail-matrix-band,
.brand-usecase-band,
.brand-related-band,
.solution-context-band,
.solution-final-band,
.solution-index-band,
.solution-context-panel,
.brand-overview-card,
.brand-spec-panel,
.brand-category-chip,
.brand-feature-stack div,
.brand-usecase-grid article,
.brand-support-grid article,
.brand-related-card,
.news-event-slider,
.news-event-card,
.detail-panel,
.spec-panel {
    background: linear-gradient(180deg, #fff, var(--mist));
}

.brand-overview-card,
.brand-spec-panel,
.brand-category-chip,
.brand-feature-stack div,
.brand-usecase-grid article,
.brand-support-grid article,
.brand-related-card,
.solution-capability-card,
.solution-context-panel,
.news-event-card,
.detail-panel,
.spec-panel {
    border-color: rgba(var(--primary-rgb), .12);
    box-shadow: 0 18px 48px rgba(var(--primary-rgb), .08);
}

.brand-strength-card,
.brand-product-cta,
.brand-final-cta,
.brand-products-band,
.brand-workflow-band {
    box-shadow: 0 18px 48px rgba(var(--primary-rgb), .18);
}

.brand-product-card:hover,
.brand-related-card:hover,
.brand-feature-stack div:hover,
.brand-usecase-grid article:hover,
.brand-support-grid article:hover,
.brand-category-chip:hover,
.brand-strength-card:hover {
    border-color: rgba(var(--secondary-rgb), .34);
    box-shadow: 0 24px 62px rgba(var(--primary-rgb), .16);
}

.brand-product-card:hover {
    background: rgba(255,255,255,.16);
}

.brand-product-body span,
.brand-final-cta span {
    color: rgba(255,255,255,.86);
}

.brand-category-chip span,
.brand-feature-stack i,
.brand-usecase-grid i,
.brand-support-grid i,
.brand-strength-card i,
.brand-timeline span,
.brand-related-card i,
.solution-capability-icon,
.news-event-card .icon-box,
.icon-box {
    background: rgba(var(--icon-rgb), .10);
    color: var(--primary);
    box-shadow: none;
}

.brand-category-chip span i,
.brand-feature-stack i,
.brand-usecase-grid i,
.brand-support-grid i,
.brand-strength-card i,
.brand-timeline span,
.solution-capability-icon i,
.news-event-card .icon-box i,
.icon-box i {
    color: #21daf0;
}

.solution-chip-grid span,
.pill-list span,
.pill-list a,
.industry-list span,
.product-feature-list li,
.product-panel-aside,
.product-tab-aside,
.product-spec-grid,
.brand-hero .brand-identity-panel,
.brand-strength-card i {
    background: linear-gradient(180deg, #fff, var(--mist));
}

.product-card-image,
.product-card-image::before,
.product-panel-aside,
.product-tab-aside,
.product-spec-grid,
.brand-category-chip,
.brand-feature-stack div,
.brand-usecase-grid article,
.brand-support-grid article,
.brand-related-card {
    border-color: rgba(var(--primary-rgb), .12);
}

.product-card-image {
    background:
        radial-gradient(circle at 50% 0%, rgba(var(--secondary-rgb), .10), transparent 42%),
        #fff;
}

.contact-info.career-apply-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 14%, rgba(255,255,255,.14), transparent 24%),
        radial-gradient(circle at 86% 84%, rgba(255,255,255,.12), transparent 22%),
        linear-gradient(145deg, rgba(var(--primary-rgb), .98), rgba(var(--secondary-rgb), .92));
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 24px 64px rgba(var(--primary-rgb), .18);
}

.contact-info.career-apply-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: .5;
    pointer-events: none;
}

.contact-info.career-apply-card h2,
.contact-info.career-apply-card p {
    color: #fff;
}

.contact-info.career-apply-card p {
    color: rgba(255,255,255,.82);
}

.contact-info.career-apply-card .career-apply-media {
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.24),
        0 24px 50px rgba(8, 23, 56, .22);
}

.contact-info.career-apply-card .career-apply-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 25, 61, .10), rgba(7, 25, 61, .38)),
        linear-gradient(135deg, rgba(255,255,255,.06), transparent 42%);
    pointer-events: none;
}

.career-list {
    display: grid;
    gap: 16px;
}

.career-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 32px;
    border-radius: 30px;
    border: 1px solid rgba(10, 36, 99, .12);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.92)),
        radial-gradient(circle at top right, rgba(7,133,196,.08), transparent 44%);
    box-shadow: 0 18px 45px rgba(8, 23, 56, .08);
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease;
}

.career-card:hover {
    transform: translateY(-6px);
    border-color: rgba(7, 133, 196, .38);
    box-shadow: 0 24px 60px rgba(8, 23, 56, .12);
}

.career-card__content {
    min-width: 0;
}

.career-card__title {
    margin: 0;
    color: #0a2a72;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.career-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 12px;
    color: #5b6b85;
    font-family: Inter, sans-serif;
    font-size: 15px;
}

.career-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.career-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.career-tag-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .09);
    color: #2563eb;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
}

.career-apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    padding: 15px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0a3a82, #0785c4);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 35px rgba(7, 133, 196, .22);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        opacity .22s ease;
}

.career-apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(7, 133, 196, .28);
    color: #fff;
}

@media (max-width: 720px) {
    .career-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .career-card__title {
        font-size: 20px;
    }

    .career-apply-button {
        width: 100%;
    }
}

.brand-category-grid-gpsm,
.brand-tab-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-category-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-items: stretch;
    gap: 0;
    min-height: 320px;
    padding: 0;
    color: var(--ink);
    text-align: left;
    background: linear-gradient(180deg, #fff, #f2f6fb);
    border: 1px solid rgba(var(--primary-rgb), .12);
    box-shadow: 0 20px 44px rgba(var(--primary-rgb), .10);
}

.brand-category-card::before {
    content: none;
}

.brand-category-card > * {
    position: relative;
    z-index: 1;
}

.brand-category-card-media {
    position: relative;
    border-bottom: 1px solid rgba(var(--primary-rgb), .10);
    min-height: 210px;
    background:
        linear-gradient(180deg, rgba(6, 20, 42, 0.06) 0%, rgba(6, 20, 42, 0.18) 100%),
        var(--category-image, linear-gradient(135deg, rgba(10,36,99,.18), rgba(0,180,216,.28))) center/cover no-repeat;
}

.brand-category-card-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(255,255,255,.30), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(9, 20, 36, .16) 100%);
    pointer-events: none;
}

.brand-category-card-body {
    display: grid;
    flex: 1;
    align-content: start;
    gap: 10px;
    padding: 20px 20px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), #eef3f9);
}

.brand-category-card strong {
    display: block;
    font-size: clamp(22px, 1.35vw, 26px);
    line-height: 1.08;
    color: #142033;
}

.brand-category-card p {
    margin: 0;
    color: rgba(20, 32, 51, .74);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-category-card span {
    background: rgba(255,255,255,.16);
    color: #fff;
    backdrop-filter: blur(12px);
}

.brand-index-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-category-tab {
    appearance: none;
    border: 0;
    cursor: pointer;
}

.brand-category-tab.is-active,
.brand-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(var(--primary-rgb), .16);
}

.brand-category-tab.is-active {
    outline: 3px solid rgba(var(--secondary-rgb), .28);
    outline-offset: -3px;
}

.brand-tab-shell {
    display: grid;
    gap: 22px;
}

.brand-tab-grid {
    display: grid;
    gap: 14px;
}

.brand-tab-panels {
    position: relative;
}

.brand-tab-panel {
    display: none;
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(16,16,16,.92), rgba(37,27,21,.88)),
        var(--category-panel-image, none) center/cover no-repeat;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 60px rgba(14,20,30,.18);
}

.brand-tab-panel.is-active {
    display: block;
}

.brand-tab-panel-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.brand-tab-panel-hero h2,
.brand-tab-panel-hero p {
    color: #fff;
}

.brand-tab-panel-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.82);
}

.brand-tab-panel-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.brand-product-grid-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-product-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    flex-wrap: wrap;
}

.brand-product-card-actions .btn {
    flex: 1 1 190px;
    justify-content: center;
}

.brand-category-card-external {
    text-decoration: none;
}

@media (max-width: 1180px) {
    .brand-category-grid-gpsm,
    .brand-tab-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand-product-grid-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .brand-category-grid-gpsm,
    .brand-tab-grid,
    .brand-product-grid-tabs {
        grid-template-columns: 1fr;
    }

    .brand-tab-panel {
        padding: 22px;
    }

    .brand-tab-panel-hero {
        flex-direction: column;
        align-items: start;
    }

    .brand-tab-panel-actions {
        justify-content: start;
    }
}
