:root {
    --ink: #08111f;
    --muted: #5f6b7a;
    --line: #dfe8ef;
    --soft: #f4f8fb;
    --brand: #078fd2;
    --brand-dark: #04628f;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(8, 17, 31, .12);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--white);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 82px;
    padding: 10px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(223, 232, 239, .9);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 34px rgba(8, 17, 31, .07);
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand img {
    width: clamp(132px, 10vw, 178px);
    max-height: 58px;
    object-fit: contain;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 9px 12px;
    color: #243246;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.site-nav a.active,
.site-nav a:hover { color: var(--brand); }

.site-nav a:hover { transform: translateY(-1px); background: rgba(7, 143, 210, .08); }

.nav-cta {
    color: var(--white) !important;
    background: var(--ink);
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(8, 17, 31, .14);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    background:
        linear-gradient(90deg, rgba(8, 17, 31, .94), rgba(8, 17, 31, .74) 52%, rgba(8, 17, 31, .2)),
        radial-gradient(circle at 72% 25%, rgba(7, 143, 210, .28), transparent 32%),
        #08111f;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% 12% -10%;
    height: 190px;
    pointer-events: none;
    background:
        repeating-linear-gradient(100deg, transparent 0 34px, rgba(255, 255, 255, .12) 35px 36px, transparent 37px 78px);
    opacity: .34;
    transform: translateX(-8%);
    animation: air-lines 16s linear infinite;
}

.hero::after {
    inset: 18% -10% auto -10%;
    opacity: .18;
    animation-duration: 23s;
    animation-direction: reverse;
}

.hero-slider,
.hero-slide { min-height: calc(100vh - 82px); }

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 46vw);
    align-items: center;
    gap: 36px;
    padding: clamp(48px, 8vw, 100px) clamp(18px, 5vw, 72px) 150px;
}

.hero-slide.is-active { display: grid; }

.hero-media {
    order: 2;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, .08);
    aspect-ratio: 1.12;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    animation: material-float 7s ease-in-out infinite;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,.28) 28%, transparent 42%);
    transform: translateX(-120%);
    animation: sheen 5.5s ease-in-out infinite;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .95;
}

.hero-content {
    max-width: 760px;
    color: var(--white);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    margin: 18px 0 20px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: .98;
    letter-spacing: 0;
}

h2 {
    margin: 12px 0 18px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.section-head,
.footer-bottom,
.trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 900;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 18px 44px rgba(7, 143, 210, .27);
}

.btn.primary:hover { box-shadow: 0 24px 62px rgba(7, 143, 210, .36); }

.btn.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .35);
}

.hero-metrics {
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    bottom: 34px;
    left: clamp(18px, 5vw, 72px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.hero-metrics div {
    padding: 24px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong { display: block; font-size: 34px; line-height: 1; }
.hero-metrics span { color: rgba(255, 255, 255, .72); font-size: 14px; }

.section {
    padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
}

.section p,
.content-block {
    color: var(--muted);
    font-size: 17px;
}

.premium-panel,
.factsheet,
.contact-card {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.premium-panel::before,
.factsheet::before,
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #111827);
}

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

.check-list li {
    padding: 14px 0 14px 34px;
    position: relative;
    border-bottom: 1px solid var(--line);
}

.check-list li::before {
    content: "âœ“";
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--brand);
    font-weight: 900;
}

.trust-row span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    background: var(--soft);
    font-weight: 800;
}

.product-band { background: var(--soft); }

.section-head {
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-head h2 { max-width: 820px; }
.text-link { color: var(--brand); font-weight: 900; }

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

.product-card {
    display: grid;
    min-height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(8, 17, 31, .08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(7, 143, 210, .42);
    box-shadow: 0 30px 80px rgba(8, 17, 31, .16);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1.24;
    object-fit: cover;
    background: var(--soft);
    transition: transform .4s ease;
}

.product-card:hover img { transform: scale(1.035); }

.product-card-body { padding: 22px; }
.product-card span { color: var(--brand); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.product-card h3 { margin: 8px 0 10px; font-size: 24px; line-height: 1.1; }
.product-card p { color: var(--muted); min-height: 78px; }
.product-card small { display: block; color: var(--ink); font-weight: 900; }
.product-card a { display: inline-block; margin-top: 18px; color: var(--brand); font-weight: 900; }

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sector-grid article {
    min-height: 210px;
    padding: 26px;
    color: var(--white);
    background: linear-gradient(145deg, #0c1728, #112b40);
    border: 1px solid rgba(255, 255, 255, .12);
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease;
}

.sector-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(7, 143, 210, .8);
}

.sector-grid article::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(.22);
    transform-origin: left;
    transition: transform .28s ease;
}

.sector-grid article:hover::after { transform: scaleX(1); }

.sector-grid p { color: rgba(255, 255, 255, .72); }

.proof-band { background: #08111f; color: var(--white); }

.logo-strip,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.logo-strip div,
blockquote {
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
}

.logo-strip img {
    width: 90px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: brightness(1.1);
}

blockquote p { color: rgba(255, 255, 255, .82); }
cite { color: var(--brand); font-style: normal; font-weight: 900; }

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: clamp(18px, 5vw, 72px);
    padding: clamp(28px, 5vw, 54px);
    color: var(--white);
    background: linear-gradient(135deg, #07101d, #073a55);
}

.cta-section p { color: rgba(255, 255, 255, .75); }

.page-hero {
    padding: clamp(62px, 9vw, 120px) clamp(18px, 5vw, 72px);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(8, 17, 31, .96), rgba(8, 17, 31, .74)),
        radial-gradient(circle at 85% 10%, rgba(7, 143, 210, .45), transparent 28%);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% 8% -10%;
    height: 130px;
    background: repeating-linear-gradient(100deg, transparent 0 42px, rgba(255, 255, 255, .12) 43px 44px, transparent 45px 82px);
    opacity: .24;
    animation: air-lines 18s linear infinite;
}

.page-hero p { max-width: 760px; color: rgba(255, 255, 255, .75); font-size: 19px; }

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
    gap: 46px;
    padding: clamp(36px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.product-detail-media img {
    width: 100%;
    aspect-ratio: 1.04;
    object-fit: cover;
    border: 1px solid var(--line);
}

.product-detail dl,
.factsheet dl {
    display: grid;
    gap: 12px;
}

.product-detail dl div,
.factsheet dl div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

dt { color: var(--muted); font-weight: 800; }
dd { margin: 0; font-weight: 900; }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .88fr) 330px;
    gap: 22px;
    align-items: start;
    max-width: 1180px;
    margin-inline: auto;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--white);
}

label {
    display: grid;
    gap: 6px;
    color: #243246;
    font-weight: 800;
    font-size: 14px;
}

input,
textarea,
select {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #cfdbe4;
    border-radius: 3px;
    color: var(--ink);
    font: inherit;
    background: var(--white);
}

textarea { resize: vertical; }
.hidden-field { position: absolute; left: -9999px; }

.alert {
    padding: 12px 14px;
    border-radius: 3px;
    font-weight: 800;
}

.alert.success { background: #e8f9ef; color: #116329; }
.alert.error { background: #ffecec; color: #9c1c1c; }

.contact-card {
    padding: 26px;
}

.contact-card h2 {
    font-size: 28px;
}

.contact-card p {
    font-size: 15px;
}

.site-footer {
    padding: 52px clamp(18px, 5vw, 72px) 24px;
    color: rgba(255, 255, 255, .78);
    background: #050b14;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr;
    gap: 34px;
}

.footer-logo {
    width: 280px;
    padding: 10px;
    background: var(--white);
    margin-bottom: 16px;
}

@keyframes material-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes sheen {
    0%, 45% { transform: translateX(-130%); }
    70%, 100% { transform: translateX(130%); }
}

@keyframes air-lines {
    from { transform: translateX(-8%); }
    to { transform: translateX(8%); }
}

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

.site-footer h3 { color: var(--white); }
.site-footer a { display: block; margin: 8px 0; color: rgba(255, 255, 255, .78); }

.footer-bottom {
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
}

@media (max-width: 980px) {
    .hero-slide,
    .split,
    .product-detail,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-media { order: 0; max-height: 360px; }
    .product-grid,
    .sector-grid,
    .logo-strip,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Full image slider hero + readable inner pages */
.hero {
    min-height: calc(100vh - 96px);
    background: #071322;
}

.hero::before,
.hero::after {
    display: none;
}

.hero-slider,
.hero-slide {
    min-height: calc(100vh - 96px);
}

.hero-slide {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 86px) 160px;
    overflow: hidden;
}

.hero-slide.is-active {
    display: grid;
}

.hero-media {
    position: absolute;
    inset: 0;
    order: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #071322;
    box-shadow: none;
    overflow: hidden;
    animation: none;
}

.hero-media::before {
    display: none;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,15,29,.86), rgba(5,15,29,.58) 46%, rgba(5,15,29,.18)),
        linear-gradient(0deg, rgba(5,15,29,.62), rgba(5,15,29,.05) 42%);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 96px);
    object-fit: cover;
    border-radius: 0;
    opacity: 1;
    transform: scale(1.04);
    animation: hero-zoom 8s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding: 0;
    color: #fff;
}

.hero h1 {
    max-width: 780px;
    color: #fff;
    text-shadow: 0 18px 44px rgba(0,0,0,.32);
}

.hero-content p {
    max-width: 660px;
    color: rgba(255,255,255,.84);
}

.hero-badge-row span {
    color: #e9f8ff;
    background: rgba(7,143,210,.22);
    border-color: rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
}

.btn.ghost {
    color: #fff;
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.08);
}

.hero-float-card {
    display: none;
}

.hero-metrics {
    z-index: 4;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
}

.page-hero,
.light-page-hero {
    min-height: 390px;
    color: #071322;
    background:
        linear-gradient(115deg, #ffffff 0%, #f5fbff 60%, #eaf7ff 100%);
}

.page-hero .eyebrow,
.light-page-hero .eyebrow {
    color: #078fd2;
    background: transparent;
}

.page-hero h1,
.light-page-hero h1 {
    color: #071322;
    text-shadow: none;
    -webkit-text-fill-color: #071322;
}

.page-hero p,
.light-page-hero p {
    color: #526577;
    -webkit-text-fill-color: #526577;
}

.page-hero *::selection {
    color: #fff;
    background: #078fd2;
}

@keyframes hero-zoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

@media (max-width: 980px) {
    .hero-slide {
        padding-bottom: 260px;
    }
}

@media (max-width: 720px) {
    .site-header { min-height: 76px; }
    .brand img {
        width: 138px;
        max-height: 56px;
    }
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        display: none;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .site-nav a { font-size: 14px; padding: 10px 12px; }
    .site-nav.is-open { display: grid; }
    .hero-slide { padding-bottom: 230px; }
    .hero-metrics { grid-template-columns: 1fr; }
    .hero-metrics div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); padding: 16px; }
    .product-grid,
    .sector-grid,
    .logo-strip,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .cta-section { display: grid; margin: 18px; }
    .product-detail dl div,
    .factsheet dl div { grid-template-columns: 1fr; gap: 4px; }
}

/* White/blue Systems & Solutions refresh */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .45s ease, visibility .45s ease;
}

.is-loaded .site-loader {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    position: relative;
    width: min(150px, 34vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.loader-logo {
    width: 100%;
}

.loader-fan {
    position: absolute;
    width: 34.6%;
    top: 1.8%;
    left: 64.2%;
    animation: fan-spin 1.4s linear infinite;
    transform-origin: 50% 50%;
}

.loader-fan-only {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: fan-spin 1.05s linear infinite;
    filter: drop-shadow(0 18px 32px rgba(7, 143, 210, .24));
}

.site-header {
    min-height: 96px;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid #e6eef5;
}

.brand {
    position: relative;
    width: clamp(220px, 17vw, 310px);
}

.brand > img {
    width: 100%;
    max-height: 82px;
}

.brand-fan {
    display: none;
}

.site-nav {
    gap: 10px;
}

.site-nav a {
    font-size: 16px;
    font-weight: 800;
    color: #121f32;
}

.nav-cta {
    background: var(--brand);
}

.hero {
    min-height: calc(100vh - 96px);
    background:
        linear-gradient(115deg, rgba(255,255,255,.96), rgba(255,255,255,.9) 48%, rgba(231,246,255,.88)),
        radial-gradient(circle at 12% 18%, rgba(7,143,210,.16), transparent 28%);
}

.hero-slider,
.hero-slide {
    min-height: calc(100vh - 96px);
}

.hero-slide {
    grid-template-columns: minmax(340px, 46vw) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 78px);
    padding-top: clamp(54px, 7vw, 88px);
}

.hero-media {
    order: 0;
    background: #f4fbff;
    border: 1px solid #d9ebf5;
    box-shadow: 0 28px 80px rgba(7, 143, 210, .14);
}

.hero-content {
    color: var(--ink);
}

.hero-content p {
    color: #536575;
}

.hero h1 {
    color: #071322;
}

.btn.ghost {
    color: var(--brand);
    border-color: rgba(7, 143, 210, .35);
    background: #fff;
}

.hero-metrics {
    background: #fff;
    border: 1px solid #dcebf3;
    box-shadow: 0 18px 55px rgba(7, 143, 210, .12);
}

.hero-metrics div {
    color: var(--ink);
    border-right: 1px solid #dcebf3;
}

.hero-metrics span {
    color: #637486;
}

.hero::before,
.hero::after,
.page-hero::after {
    background: repeating-linear-gradient(100deg, transparent 0 34px, rgba(7,143,210,.14) 35px 36px, transparent 37px 78px);
}

.light-page-hero {
    color: var(--ink);
    background:
        linear-gradient(115deg, #fff, #f4fbff),
        radial-gradient(circle at 80% 15%, rgba(7,143,210,.18), transparent 28%);
}

.light-page-hero p {
    color: #536575;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.download-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 20px;
    padding: 26px;
    background: #fff;
    border: 1px solid #dcebf3;
    box-shadow: 0 18px 55px rgba(8,17,31,.08);
}

.download-icon {
    display: grid;
    place-items: center;
    height: 86px;
    color: #fff;
    background: var(--brand);
    font-weight: 900;
    border-radius: 6px;
}

.infrastructure-list {
    display: grid;
    gap: 28px;
}

.infra-card {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
    padding: clamp(20px, 4vw, 38px);
    background: #fff;
    border: 1px solid #dcebf3;
    box-shadow: 0 22px 65px rgba(8,17,31,.09);
}

.infra-card img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
}

@keyframes fan-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
    .hero-slide,
    .infra-card {
        grid-template-columns: 1fr;
    }
    .download-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 84px;
    }
    .brand {
        width: 185px;
    }
    .site-nav a {
        font-size: 15px;
    }
}

/* Hero and inner-page premium polish */
.hero {
    isolation: isolate;
}

.hero::before {
    opacity: .22;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7,143,210,.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(7,143,210,.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, transparent 78%);
}

.hero-slide {
    max-width: 1820px;
    margin: 0 auto;
}

.hero-media {
    border-radius: 10px;
    overflow: visible;
    padding: 14px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(7,143,210,.55), rgba(255,255,255,.2), rgba(7,143,210,.18)) border-box;
    border: 1px solid transparent;
}

.hero-media img {
    border-radius: 7px;
    box-shadow: inset 0 0 0 1px rgba(7,143,210,.08);
}

.hero-float-card {
    position: absolute;
    z-index: 4;
    width: min(230px, 46%);
    padding: 16px 18px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(220,235,243,.95);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(8,17,31,.12);
    backdrop-filter: blur(12px);
}

.hero-float-card strong {
    display: block;
    color: #071322;
    font-size: 18px;
    line-height: 1.1;
}

.hero-float-card span {
    color: #637486;
    font-size: 13px;
}

.hero-float-card--top {
    top: 26px;
    left: -18px;
}

.hero-float-card--bottom {
    right: -18px;
    bottom: 26px;
}

.hero-content {
    padding: clamp(12px, 2vw, 28px) 0;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(46px, 5.4vw, 88px);
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}

.hero-badge-row span {
    padding: 9px 13px;
    color: #075f8f;
    background: #eaf7ff;
    border: 1px solid #cce8f8;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.hero-actions {
    gap: 16px;
}

.btn {
    border-radius: 7px;
}

.btn.primary {
    background: linear-gradient(135deg, #0b9bdc, #0575ad);
}

.section {
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.product-band {
    background: linear-gradient(180deg, #f4fbff, #fff);
}

.premium-panel,
.product-card,
.contact-form,
.download-card,
.infra-card,
.factsheet {
    border-radius: 8px;
}

.product-card {
    border-color: #dcebf3;
}

.product-card-body {
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.sector-grid article {
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(7,143,210,.92), rgba(5,52,83,.96)),
        radial-gradient(circle at 18% 0%, rgba(255,255,255,.24), transparent 32%);
}

.page-hero,
.light-page-hero {
    min-height: 420px;
    display: grid;
    align-content: center;
    border-bottom: 1px solid #dcebf3;
    background:
        linear-gradient(115deg, rgba(255,255,255,.96), rgba(244,251,255,.96)),
        radial-gradient(circle at 78% 18%, rgba(7,143,210,.2), transparent 28%);
}

.page-hero h1 {
    max-width: 1180px;
    font-size: clamp(44px, 6vw, 96px);
}

.page-hero p {
    max-width: 900px;
    color: #526577;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 130px;
    background: linear-gradient(180deg, transparent, rgba(7,143,210,.06));
    pointer-events: none;
}

.download-card,
.infra-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.download-card:hover,
.infra-card:hover {
    transform: translateY(-5px);
    border-color: rgba(7,143,210,.45);
    box-shadow: 0 28px 72px rgba(8,17,31,.12);
}

@media (max-width: 980px) {
    .hero-media {
        overflow: hidden;
    }

    .hero-float-card {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 10px;
    }
}

/* Final live overrides: full-bleed slider and clean inner page typography */
.hero {
    min-height: calc(100vh - 96px) !important;
    background: #071322 !important;
    overflow: hidden;
}

.hero::before,
.hero::after,
.hero-media::before {
    display: none !important;
}

.hero-slider,
.hero-slide {
    min-height: calc(100vh - 96px) !important;
}

.hero-slide {
    position: relative !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    align-items: center !important;
    max-width: none !important;
    margin: 0 !important;
    padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 86px) 160px !important;
    overflow: hidden !important;
}

.hero-slide.is-active {
    display: grid !important;
}

.hero-media {
    position: absolute !important;
    inset: 0 !important;
    order: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #071322 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    animation: none !important;
}

.hero-media::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    background:
        linear-gradient(90deg, rgba(5,15,29,.88), rgba(5,15,29,.62) 46%, rgba(5,15,29,.2)),
        linear-gradient(0deg, rgba(5,15,29,.64), rgba(5,15,29,.05) 46%) !important;
}

.hero-media img {
    width: 100% !important;
    height: 100% !important;
    min-height: calc(100vh - 96px) !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    transform: scale(1.04);
    animation: hero-zoom 8s ease-in-out infinite alternate !important;
}

.hero-content {
    position: relative !important;
    z-index: 3 !important;
    max-width: 780px !important;
    padding: 0 !important;
    color: #fff !important;
}

.hero h1 {
    max-width: 800px !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 18px 44px rgba(0,0,0,.32) !important;
}

.hero-content p {
    max-width: 660px !important;
    color: rgba(255,255,255,.84) !important;
    -webkit-text-fill-color: rgba(255,255,255,.84) !important;
}

.hero-badge-row span {
    color: #e9f8ff !important;
    background: rgba(7,143,210,.22) !important;
    border-color: rgba(255,255,255,.22) !important;
}

.hero .btn.ghost {
    color: #fff !important;
    border-color: rgba(255,255,255,.42) !important;
    background: rgba(255,255,255,.08) !important;
}

.hero-float-card {
    display: none !important;
}

.page-hero,
.light-page-hero {
    min-height: 390px !important;
    color: #071322 !important;
    background: linear-gradient(115deg, #ffffff 0%, #f5fbff 58%, #eaf7ff 100%) !important;
}

.page-hero h1,
.light-page-hero h1 {
    color: #071322 !important;
    -webkit-text-fill-color: #071322 !important;
    text-shadow: none !important;
}

.page-hero p,
.light-page-hero p {
    color: #526577 !important;
    -webkit-text-fill-color: #526577 !important;
}

/* Final polish: rounded hero and premium footer */
.hero {
    width: calc(100% - 24px) !important;
    margin: 12px auto 0 !important;
    min-height: calc(100vh - 120px) !important;
    border-radius: 30px !important;
    box-shadow: 0 34px 90px rgba(8,17,31,.18) !important;
}

.hero-slider,
.hero-slide {
    min-height: calc(100vh - 120px) !important;
}

.hero-slide {
    border-radius: 28px !important;
    padding: clamp(70px, 8vw, 118px) clamp(24px, 7vw, 112px) 96px !important;
}

.hero-media,
.hero-media img,
.hero-media::after {
    border-radius: 28px !important;
}

.hero-media img {
    min-height: calc(100vh - 120px) !important;
}

.hero-content {
    max-width: 840px !important;
}

.hero .eyebrow {
    color: #7bd3ff !important;
}

.hero-actions .btn {
    min-height: 52px;
    padding-inline: 24px;
}

.site-footer {
    position: relative;
    margin-top: 42px;
    padding: 72px clamp(18px, 5vw, 72px) 26px !important;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(7,143,210,.28), transparent 30%),
        linear-gradient(135deg, #06101d 0%, #082035 54%, #04101d 100%) !important;
    border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
    pointer-events: none;
}

.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-grid {
    grid-template-columns: 1.35fr .7fr 1fr !important;
    gap: clamp(28px, 5vw, 72px) !important;
}

.footer-logo {
    width: min(320px, 100%) !important;
    padding: 14px !important;
    border-radius: 10px;
    box-shadow: 0 18px 55px rgba(0,0,0,.24);
}

.site-footer h3 {
    margin-bottom: 14px;
    color: #fff !important;
    font-size: 18px;
}

.site-footer a {
    width: fit-content;
    color: rgba(255,255,255,.78) !important;
    transition: color .22s ease, transform .22s ease;
}

.site-footer a:hover {
    color: #7bd3ff !important;
    transform: translateX(3px);
}

.site-footer p {
    color: rgba(255,255,255,.72);
}

.footer-bottom {
    color: rgba(255,255,255,.62);
    border-top-color: rgba(255,255,255,.14) !important;
}

@media (max-width: 980px) {
    .hero {
        margin: 16px !important;
        border-radius: 18px !important;
    }

    .hero-slide,
    .hero-media,
    .hero-media img,
    .hero-media::after {
        border-radius: 18px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Show full slider image without cropping */
.hero-media {
    background:
        radial-gradient(circle at 72% 24%, rgba(7,143,210,.32), transparent 28%),
        linear-gradient(135deg, #06101d, #0b2740) !important;
}

.hero-media img {
    object-fit: contain !important;
    object-position: center center !important;
    padding: clamp(12px, 2vw, 34px) !important;
}

/* Home slider final: full premium image slider with rounded frame */
.hero {
    width: calc(100% - 32px) !important;
    max-width: 1840px !important;
    min-height: min(760px, calc(100vh - 122px)) !important;
    margin: 16px auto 0 !important;
    border: 1px solid rgba(7,143,210,.12) !important;
    border-radius: 34px !important;
    background: #071322 !important;
}

.hero-slider {
    position: relative !important;
    min-height: min(760px, calc(100vh - 122px)) !important;
}

.hero-slide {
    min-height: min(760px, calc(100vh - 122px)) !important;
    padding: clamp(74px, 8vw, 122px) clamp(24px, 7vw, 116px) 112px !important;
}

.hero-slide.is-active {
    animation: slider-reveal .72s ease both !important;
}

.hero-media img {
    min-height: min(760px, calc(100vh - 122px)) !important;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
    transform: scale(1.02) !important;
    filter: saturate(1.05) contrast(1.04) !important;
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(4,13,25,.88) 0%, rgba(4,13,25,.72) 36%, rgba(4,13,25,.34) 68%, rgba(4,13,25,.2) 100%),
        linear-gradient(0deg, rgba(4,13,25,.58), rgba(4,13,25,.04) 48%) !important;
}

.hero h1 {
    font-size: clamp(44px, 6.6vw, 104px) !important;
    line-height: .98 !important;
    max-width: 980px !important;
}

.hero-content p {
    font-size: clamp(18px, 1.8vw, 25px) !important;
    line-height: 1.58 !important;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 7;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.14);
    box-shadow: 0 18px 38px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
    font-family: Arial, sans-serif;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.hero-control:hover {
    background: #0790d3;
    border-color: #0790d3;
    transform: translateY(-50%) scale(1.06);
}

.hero-control--prev {
    left: clamp(18px, 2.4vw, 42px);
}

.hero-control--next {
    right: clamp(18px, 2.4vw, 42px);
}

.hero-dots {
    position: absolute;
    left: clamp(24px, 7vw, 116px);
    bottom: clamp(28px, 5vw, 58px);
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: width .24s ease, background .24s ease, transform .24s ease;
}

.hero-dot.is-active {
    width: 42px;
    background: #0790d3;
    box-shadow: 0 0 0 6px rgba(7,144,211,.16);
}

@keyframes slider-reveal {
    from {
        opacity: .18;
        transform: scale(1.01);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 760px) {
    .hero {
        width: calc(100% - 20px) !important;
        min-height: 620px !important;
        margin-top: 10px !important;
        border-radius: 22px !important;
    }

    .hero-slider,
    .hero-slide,
    .hero-media img {
        min-height: 620px !important;
    }

    .hero-slide {
        padding: 72px 22px 116px !important;
    }

    .hero-control {
        top: auto;
        bottom: 26px;
        width: 44px;
        height: 44px;
        font-size: 32px;
        transform: none;
    }

    .hero-control:hover {
        transform: scale(1.04);
    }

    .hero-control--prev {
        left: auto;
        right: 78px;
    }

    .hero-control--next {
        right: 24px;
    }

    .hero-dots {
        left: 24px;
        bottom: 42px;
    }

    .hero h1 {
        font-size: clamp(38px, 13vw, 58px) !important;
    }
}

/* Product detail: show product name only once */
.product-detail-content .eyebrow {
    display: none !important;
}

.product-detail-content h1 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding: 16px 24px !important;
    border-radius: 16px !important;
    font-size: clamp(30px, 3.7vw, 52px) !important;
    line-height: 1.08 !important;
}

@media (max-width: 760px) {
    .product-detail-content h1 {
        padding: 14px 16px !important;
        font-size: clamp(28px, 8vw, 38px) !important;
    }
}

/* Final size adjustment for product detail highlight title */
.product-detail-content h1 {
    padding: 14px 22px !important;
    border-radius: 15px !important;
    font-size: clamp(28px, 3.25vw, 46px) !important;
    line-height: 1.12 !important;
}

@media (max-width: 760px) {
    .product-detail-content h1 {
        padding: 13px 15px !important;
        font-size: clamp(26px, 7.2vw, 34px) !important;
    }
}



/* Slightly smaller product detail highlight title */
.product-detail-content h1 {
    padding: 14px 22px !important;
    border-radius: 15px !important;
    font-size: clamp(28px, 3.25vw, 46px) !important;
    line-height: 1.12 !important;
}

@media (max-width: 760px) {
    .product-detail-content h1 {
        padding: 13px 15px !important;
        font-size: clamp(26px, 7.2vw, 34px) !important;
    }
}

/* Final home hero: full-width Praxware-style slider */
.hero {
    width: 100% !important;
    max-width: none !important;
    min-height: calc(100vh - 112px) !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #071322 !important;
}

.hero-slider,
.hero-slide {
    min-height: calc(100vh - 112px) !important;
    border-radius: 0 !important;
}

.hero-slider {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
}

.hero-slide {
    padding: clamp(84px, 9vw, 132px) clamp(28px, 8vw, 132px) 118px !important;
    align-items: center !important;
}

.hero-media,
.hero-media img,
.hero-media::after {
    border-radius: 0 !important;
}

.hero-media {
    background: #071322 !important;
}

.hero-media img {
    width: 100% !important;
    height: 100% !important;
    min-height: calc(100vh - 112px) !important;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
    transform: none !important;
    filter: saturate(1.08) contrast(1.05) !important;
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(4,13,25,.84) 0%, rgba(4,13,25,.58) 34%, rgba(4,13,25,.2) 68%, rgba(4,13,25,.08) 100%),
        linear-gradient(0deg, rgba(4,13,25,.44), rgba(4,13,25,.02) 46%) !important;
}

.hero-content {
    max-width: 820px !important;
    padding: 0 !important;
}

.hero h1 {
    font-size: clamp(48px, 6.1vw, 102px) !important;
    line-height: .98 !important;
    max-width: 900px !important;
}

.hero-content p {
    max-width: 660px !important;
    font-size: clamp(18px, 1.55vw, 24px) !important;
}

.hero-control {
    width: 58px !important;
    height: 58px !important;
    background: rgba(255,255,255,.18) !important;
    border-color: rgba(255,255,255,.4) !important;
}

.hero-control--prev {
    left: clamp(18px, 2.1vw, 38px) !important;
}

.hero-control--next {
    right: clamp(18px, 2.1vw, 38px) !important;
}

.hero-dots {
    left: clamp(28px, 8vw, 132px) !important;
    bottom: clamp(28px, 5vw, 58px) !important;
}

@media (max-width: 760px) {
    .hero,
    .hero-slider,
    .hero-slide,
    .hero-media img {
        min-height: calc(100vh - 92px) !important;
        border-radius: 0 !important;
    }

    .hero {
        width: 100% !important;
        margin: 0 !important;
    }

    .hero-slide {
        padding: 74px 22px 112px !important;
    }

    .hero-control {
        width: 44px !important;
        height: 44px !important;
    }

    .hero-dots {
        left: 22px !important;
        bottom: 38px !important;
    }
}

/* Image-designed slider: show uploaded banner exactly, without duplicate text */
.hero {
    width: 100% !important;
    height: clamp(360px, 46.9vw, 860px) !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #f5efe5 !important;
}

.hero-slider,
.hero-slide {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
}

.hero-slide {
    padding: 0 !important;
}

.hero-media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #f5efe5 !important;
}

.hero-media::after,
.hero-content,
.hero-float-card {
    display: none !important;
}

.hero-media img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 0 !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
}

.hero-control {
    background: rgba(7,19,34,.48) !important;
    border-color: rgba(255,255,255,.55) !important;
    color: #fff !important;
}

.hero-dots {
    left: 50% !important;
    bottom: 22px !important;
    transform: translateX(-50%) !important;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(7,19,34,.22);
    backdrop-filter: blur(12px);
}

@media (max-width: 760px) {
    .hero {
        height: clamp(230px, 54vw, 420px) !important;
        min-height: 0 !important;
    }

    .hero-slider,
    .hero-slide,
    .hero-media img {
        height: 100% !important;
        min-height: 0 !important;
    }

    .hero-control {
        bottom: 16px !important;
    }

    .hero-dots {
        bottom: 18px !important;
    }
}

/* Premium downloads list */
.download-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 24px !important;
}

.download-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 82px 1fr !important;
    gap: 22px !important;
    min-height: 190px;
    padding: 26px !important;
    overflow: hidden;
    border: 1px solid rgba(7,143,210,.16) !important;
    border-radius: 10px !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,251,255,.96)),
        radial-gradient(circle at 100% 0%, rgba(7,143,210,.18), transparent 34%);
    box-shadow: 0 18px 48px rgba(8,17,31,.08) !important;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease !important;
}

.download-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #0b9bdc, #084b72);
}

.download-card::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(7,143,210,.09);
    transition: transform .28s ease, background .28s ease;
}

.download-card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(7,143,210,.42) !important;
    background:
        linear-gradient(135deg, #ffffff, #eef9ff),
        radial-gradient(circle at 100% 0%, rgba(7,143,210,.22), transparent 34%);
    box-shadow: 0 28px 78px rgba(8,17,31,.14) !important;
}

.download-card:hover::after {
    transform: scale(1.22);
    background: rgba(7,143,210,.14);
}

.download-icon {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 96px !important;
    align-self: start;
    border-radius: 8px !important;
    background:
        linear-gradient(160deg, #0b9bdc 0%, #0575ad 68%, #07385d 100%) !important;
    box-shadow: 0 16px 34px rgba(7,143,210,.24);
}

.download-icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-top: 18px solid rgba(255,255,255,.72);
    border-left: 18px solid transparent;
}

.download-icon span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
}

.download-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.download-label {
    margin-bottom: 8px;
    color: #0790d3;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.download-card h3 {
    margin: 0 0 10px;
    color: #071322;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.15;
}

.download-card p {
    margin: 0 0 20px;
    color: #536575;
    line-height: 1.65;
}

.download-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding: 12px 16px 12px 18px;
    border-radius: 6px;
    color: #fff !important;
    background: linear-gradient(135deg, #071322, #084b72);
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(8,17,31,.16);
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.download-action span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #071322;
    background: #fff;
}

.download-action:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0790d3, #0575ad);
    box-shadow: 0 18px 36px rgba(7,143,210,.22);
}

@media (max-width: 620px) {
    .download-card {
        grid-template-columns: 1fr !important;
        min-height: auto;
    }
}

/* Final hero image fit for 1920x900 uploaded slides */
.hero {
    height: clamp(520px, 46.875vw, 900px) !important;
    min-height: 0 !important;
    background: #071322 !important;
}

.hero-media {
    background: #071322 !important;
}

.hero-media::after {
    display: block !important;
    background: linear-gradient(90deg, rgba(4,13,25,.2), rgba(4,13,25,.02) 44%, rgba(4,13,25,.08)) !important;
}

.hero-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

@media (max-width: 980px) {
    .hero {
        height: clamp(440px, 62vw, 680px) !important;
    }
}

@media (max-width: 620px) {
    .hero {
        height: clamp(300px, 72vw, 460px) !important;
    }
}

/* Final header typography and footer social links */
.site-header {
    min-height: 126px !important;
    padding-block: 14px !important;
}

.brand {
    width: clamp(320px, 24vw, 460px) !important;
}

.brand > img {
    max-height: 112px !important;
}

.site-nav a {
    font-family: Cambria, Georgia, "Times New Roman", serif !important;
    font-size: clamp(17px, 1vw, 20px) !important;
    font-weight: 700 !important;
    padding: 11px 14px !important;
}

.nav-cta {
    padding: 14px 20px !important;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-logo {
    width: min(380px, 100%) !important;
}

.site-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    color: #fff !important;
    background: rgba(255,255,255,.08);
    font-family: Cambria, Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 700;
}

.site-footer .footer-social a:hover {
    color: #071322 !important;
    background: #7bd3ff;
    border-color: #7bd3ff;
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .site-header {
        min-height: 104px !important;
    }

    .brand {
        width: clamp(240px, 54vw, 340px) !important;
    }

    .brand > img {
        max-height: 90px !important;
    }

    .site-nav a {
        font-size: 18px !important;
    }
}

/* Final home product cards: smaller cards, 4 per row on desktop */
.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.product-card img {
    aspect-ratio: 1.42 !important;
}

.product-card-body {
    padding: 18px !important;
}

.product-card h3 {
    font-size: 21px !important;
}

.product-card p {
    min-height: 66px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.product-card a {
    margin-top: 14px !important;
}

@media (max-width: 1180px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 820px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    .product-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Product detail gallery slider */
.product-gallery-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f4f8fb;
    box-shadow: 0 22px 58px rgba(8,17,31,.1);
}

.product-detail-media .product-gallery-slide {
    display: none;
    width: 100%;
    aspect-ratio: 1.08;
    object-fit: cover;
    border: 0;
    animation: product-gallery-fade .45s ease both;
}

.product-detail-media .product-gallery-slide.is-active {
    display: block;
}

.product-gallery-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    color: #fff;
    background: rgba(8,17,31,.5);
    box-shadow: 0 12px 30px rgba(8,17,31,.22);
    font-family: Arial, sans-serif;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .22s ease, transform .22s ease;
}

.product-gallery-control:hover {
    background: var(--brand);
    transform: translateY(-50%) scale(1.05);
}

.product-gallery-control--prev {
    left: 16px;
}

.product-gallery-control--next {
    right: 16px;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.product-gallery-thumbs button {
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(8,17,31,.08);
}

.product-gallery-thumbs button.is-active {
    border-color: var(--brand);
}

.product-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1.24;
    object-fit: cover;
}

@keyframes product-gallery-fade {
    from {
        opacity: .32;
        transform: scale(1.01);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Final premium footer with branded social badges */
.site-footer {
    position: relative !important;
    margin-top: 54px !important;
    padding: clamp(54px, 6vw, 86px) clamp(18px, 5vw, 76px) 26px !important;
    overflow: hidden !important;
    color: rgba(255,255,255,.78) !important;
    background:
        radial-gradient(circle at 12% 4%, rgba(7,143,210,.34), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(123,211,255,.16), transparent 30%),
        linear-gradient(135deg, #030914 0%, #06223a 48%, #03101e 100%) !important;
}

.site-footer::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px) !important;
    background-size: 52px 52px !important;
    mask-image: linear-gradient(to bottom, #000, transparent 82%) !important;
    pointer-events: none !important;
}

.site-footer::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #0790d3, #7bd3ff, #0790d3) !important;
}

.footer-grid,
.footer-bottom {
    position: relative !important;
    z-index: 1 !important;
}

.footer-grid {
    grid-template-columns: minmax(280px, 1.2fr) minmax(170px, .55fr) minmax(280px, .9fr) !important;
    gap: clamp(24px, 4.8vw, 74px) !important;
    align-items: start !important;
}

.footer-grid > div {
    min-width: 0;
}

.footer-logo {
    width: min(390px, 100%) !important;
    padding: 12px !important;
    margin-bottom: 18px !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 22px 58px rgba(0,0,0,.28) !important;
}

.site-footer h3 {
    margin: 0 0 16px !important;
    color: #fff !important;
    font-family: Cambria, Georgia, "Times New Roman", serif !important;
    font-size: 23px !important;
}

.site-footer p {
    color: rgba(255,255,255,.76) !important;
    line-height: 1.75 !important;
}

.site-footer a {
    color: rgba(255,255,255,.8) !important;
}

.site-footer a:hover {
    color: #7bd3ff !important;
}

.footer-social {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 22px !important;
}

.site-footer .footer-social .social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 999px !important;
    color: #fff !important;
    background: rgba(255,255,255,.08) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
    backdrop-filter: blur(12px) !important;
    font-family: Cambria, Georgia, "Times New Roman", serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease !important;
}

.social-icon {
    display: grid !important;
    width: 34px !important;
    height: 34px !important;
    place-items: center !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-family: Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.social-link--instagram .social-icon {
    background: radial-gradient(circle at 30% 110%, #feda75 0 18%, #fa7e1e 32%, #d62976 54%, #962fbf 76%, #4f5bd5 100%) !important;
}

.social-link--facebook .social-icon {
    background: #1877f2 !important;
    font-size: 22px !important;
    font-family: Arial, sans-serif !important;
}

.social-link--indiamart .social-icon {
    background: linear-gradient(135deg, #0b65c2, #00a1df) !important;
    font-size: 12px !important;
}

.site-footer .footer-social .social-link:hover {
    color: #fff !important;
    border-color: rgba(123,211,255,.7) !important;
    background: rgba(7,143,210,.22) !important;
    box-shadow: 0 20px 42px rgba(7,143,210,.2) !important;
    transform: translateY(-3px) !important;
}

.footer-bottom {
    margin-top: clamp(34px, 5vw, 58px) !important;
    padding-top: 22px !important;
    border-top: 1px solid rgba(255,255,255,.14) !important;
    color: rgba(255,255,255,.62) !important;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Final product and sector card polish */
.product-band {
    background:
        linear-gradient(180deg, #f5fbff 0%, #ffffff 100%) !important;
}

.product-card {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(7,143,210,.2) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 18px 46px rgba(8,17,31,.08) !important;
}

.product-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 0 auto 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #0790d3, #7bd3ff) !important;
    transform: scaleX(.38) !important;
    transform-origin: left !important;
    transition: transform .28s ease !important;
    z-index: 2 !important;
}

.product-card:hover::before {
    transform: scaleX(1) !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(7,143,210,.55) !important;
    box-shadow: 0 28px 76px rgba(8,17,31,.14) !important;
}

.product-card img {
    border-bottom: 1px solid rgba(7,143,210,.14) !important;
}

.product-card-body {
    background:
        radial-gradient(circle at 100% 0%, rgba(7,143,210,.08), transparent 34%),
        linear-gradient(180deg, #fff, #fbfdff) !important;
}

.product-card span {
    display: inline-flex !important;
    width: fit-content !important;
    padding: 6px 9px !important;
    border-radius: 999px !important;
    color: #0575ad !important;
    background: rgba(7,143,210,.1) !important;
}

.product-card small {
    padding-top: 10px !important;
    border-top: 1px solid rgba(7,143,210,.12) !important;
}

.product-card a {
    padding: 9px 12px !important;
    border: 1px solid rgba(7,143,210,.22) !important;
    border-radius: 6px !important;
    background: rgba(7,143,210,.08) !important;
    transition: color .24s ease, background .24s ease, border-color .24s ease !important;
}

.product-card a:hover {
    color: #fff !important;
    background: #0790d3 !important;
    border-color: #0790d3 !important;
}

.sector-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.sector-grid article {
    display: grid !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(7,143,210,.2) !important;
    border-radius: 12px !important;
    color: #071322 !important;
    background: #fff !important;
    box-shadow: 0 18px 46px rgba(8,17,31,.08) !important;
}

.sector-grid article::after {
    display: none !important;
}

.sector-grid article:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(7,143,210,.48) !important;
    box-shadow: 0 28px 72px rgba(8,17,31,.13) !important;
}

.sector-visual {
    position: relative !important;
    min-height: 150px !important;
    background:
        linear-gradient(135deg, rgba(7,143,210,.94), rgba(5,52,83,.96)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 30%) !important;
    overflow: hidden !important;
}

.sector-visual::before {
    content: "" !important;
    position: absolute !important;
    inset: 24px !important;
    border-radius: 12px !important;
    border: 2px solid rgba(255,255,255,.28) !important;
}

.sector-visual::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.9) !important;
    box-shadow:
        -42px -26px 0 -18px rgba(255,255,255,.58),
        42px 26px 0 -18px rgba(255,255,255,.58),
        0 0 0 10px rgba(255,255,255,.12) !important;
    transform: translate(-50%, -50%) rotate(12deg) !important;
}

.sector-visual[data-sector="1"] {
    background:
        linear-gradient(135deg, #077eb9, #0b4e76),
        radial-gradient(circle at 80% 10%, rgba(255,255,255,.32), transparent 34%) !important;
}

.sector-visual[data-sector="2"] {
    background:
        linear-gradient(135deg, #0b8f98, #07455f),
        radial-gradient(circle at 24% 20%, rgba(255,255,255,.3), transparent 34%) !important;
}

.sector-visual[data-sector="3"] {
    background:
        linear-gradient(135deg, #1467b8, #071f3a),
        radial-gradient(circle at 74% 22%, rgba(255,255,255,.28), transparent 34%) !important;
}

.sector-copy {
    padding: 22px !important;
}

.sector-grid h3 {
    margin: 0 0 10px !important;
    color: #071322 !important;
    font-size: 22px !important;
}

.sector-grid p {
    margin: 0 !important;
    color: #536575 !important;
}

@media (max-width: 1180px) {
    .sector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .sector-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Final premium polish for product and sector cards */
.product-grid {
    align-items: stretch !important;
}

.product-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
    border: 1px solid rgba(7,143,210,.26) !important;
    border-radius: 16px !important;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fcff 100%) !important;
    box-shadow: 0 18px 50px rgba(8,17,31,.09) !important;
}

.product-card:hover {
    transform: translateY(-9px) !important;
    border-color: rgba(7,143,210,.6) !important;
    box-shadow: 0 30px 80px rgba(8,17,31,.16) !important;
}

.product-card img {
    height: auto !important;
    aspect-ratio: 1.52 / 1 !important;
    object-fit: cover !important;
    border-radius: 16px 16px 0 0 !important;
}

.product-card-body {
    display: flex !important;
    flex: 1 !important;
    flex-direction: column !important;
    padding: 22px !important;
}

.product-card h3 {
    margin-top: 11px !important;
    color: #061526 !important;
    font-size: clamp(20px, 1.35vw, 24px) !important;
}

.product-card p {
    min-height: 0 !important;
    margin-bottom: 18px !important;
    color: #526679 !important;
}

.product-card small {
    display: inline-flex !important;
    width: fit-content !important;
    margin-top: auto !important;
    padding: 8px 11px !important;
    border: 1px solid rgba(7,143,210,.16) !important;
    border-radius: 999px !important;
    color: #063958 !important;
    background: #eef9ff !important;
}

.product-card a {
    width: 100% !important;
    margin-top: 18px !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    text-align: center !important;
}

.sector-grid article {
    border-radius: 16px !important;
    box-shadow: 0 20px 56px rgba(8,17,31,.09) !important;
}

.sector-grid article:hover {
    box-shadow: 0 30px 82px rgba(8,17,31,.15) !important;
}

.sector-visual {
    min-height: 175px !important;
}

.sector-visual.has-image {
    background: #eef7fc !important;
}

.sector-visual.has-image::before,
.sector-visual.has-image::after {
    display: none !important;
}

.sector-visual.has-image img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .35s ease, filter .35s ease !important;
}

.sector-grid article:hover .sector-visual.has-image img {
    transform: scale(1.04) !important;
    filter: saturate(1.08) contrast(1.03) !important;
}

.sector-copy {
    padding: 24px !important;
}

/* Recent product card changes only: keep pasted header/footer style unchanged. */
.product-card-body {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    padding: 18px 20px 20px !important;
}

.product-card span {
    align-self: stretch !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 58px !important;
    margin-bottom: 16px !important;
    padding: 13px 16px !important;
    border: 1px solid rgba(0, 150, 214, .28) !important;
    border-radius: 12px !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0) 42%),
        linear-gradient(135deg, #078fd2 0%, #07aeea 100%) !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: .2px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    box-shadow: 0 16px 34px rgba(0, 150, 214, .18) !important;
}

.product-card h3 {
    display: none !important;
}

.product-card p,
.product-card small {
    display: none !important;
}

.product-card-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 0 !important;
}

.product-card .product-action {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 15px 12px !important;
    border: 1px solid rgba(0, 150, 214, .24) !important;
    border-radius: 8px !important;
    background: linear-gradient(180deg, #f3fbff 0%, #e7f5fc 100%) !important;
    color: var(--brand) !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 28px rgba(0, 150, 214, .08) !important;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease !important;
}

.product-card .product-action--enquiry {
    background: linear-gradient(135deg, var(--brand), #07aeea) !important;
    border-color: var(--brand) !important;
    color: #fff !important;
}

.product-card .product-action:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 38px rgba(0, 150, 214, .18) !important;
}

.client-section-head {
    margin-bottom: 28px !important;
}

.proof-band .client-section-head h2,
.proof-band .client-section-head .section-kicker {
    color: #fff !important;
}

.proof-band .logo-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin-bottom: 0 !important;
}

.proof-band .logo-strip div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 118px !important;
    padding: 18px !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 14px !important;
    background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045)) !important;
    box-shadow: 0 18px 44px rgba(0,0,0,.18) !important;
    transition: transform .25s ease, border-color .25s ease, background .25s ease !important;
}

.proof-band .logo-strip div:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(7, 174, 234, .45) !important;
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(7,174,234,.08)) !important;
}

.proof-band .logo-strip img {
    display: block !important;
    width: 100% !important;
    max-width: 150px !important;
    height: 76px !important;
    margin: 0 !important;
    object-fit: contain !important;
    filter: none !important;
}

.proof-band .logo-strip span {
    color: #fff !important;
    font-weight: 800 !important;
    text-align: center !important;
}

@media (max-width: 520px) {
    .product-card-actions {
        gap: 8px !important;
    }

    .product-card .product-action {
        padding: 13px 8px !important;
        font-size: 14px !important;
    }

    .product-card span {
        min-height: 50px !important;
        padding: 11px 12px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 1100px) {
    .proof-band .logo-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 700px) {
    .proof-band .logo-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Client section title visibility fix */
.proof-band {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%) !important;
    color: var(--ink) !important;
    padding-top: 72px !important;
}

.proof-band .client-section-head {
    display: block !important;
    max-width: 1180px !important;
    margin: 0 auto 34px !important;
    text-align: center !important;
}

.proof-band .client-section-head > div {
    width: 100% !important;
}

.proof-band .client-section-head .section-kicker {
    display: block !important;
    margin-bottom: 12px !important;
    color: var(--brand) !important;
}

.proof-band .client-section-head h2 {
    display: block !important;
    margin: 0 !important;
    color: var(--ink) !important;
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 1.05 !important;
    text-align: center !important;
}

.proof-band .logo-strip div {
    background: #fff !important;
    border-color: rgba(7, 143, 210, .12) !important;
    box-shadow: 0 18px 54px rgba(8, 17, 31, .09) !important;
}

/* Premium client heading and product detail highlight */
.proof-band .client-section-head {
    position: relative !important;
    margin-bottom: 42px !important;
}

.proof-band .client-section-head::before {
    content: "" !important;
    display: block !important;
    width: 74px !important;
    height: 4px !important;
    margin: 0 auto 18px !important;
    border-radius: 99px !important;
    background: linear-gradient(90deg, var(--brand), #07aeea) !important;
}

.proof-band .client-section-head .section-kicker {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 14px !important;
    padding: 8px 18px !important;
    border: 1px solid rgba(7, 143, 210, .18) !important;
    border-radius: 999px !important;
    background: #eef8fd !important;
    color: var(--brand) !important;
    font-size: 13px !important;
    letter-spacing: .8px !important;
    box-shadow: 0 10px 26px rgba(7, 143, 210, .08) !important;
}

.proof-band .client-section-head h2 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: min(760px, 92vw) !important;
    padding: 18px 34px !important;
    border: 1px solid rgba(7, 143, 210, .18) !important;
    border-radius: 22px !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,250,254,.98)),
        radial-gradient(circle at 20% 0%, rgba(7,174,234,.12), transparent 32%) !important;
    color: var(--ink) !important;
    font-size: clamp(34px, 4vw, 56px) !important;
    font-weight: 900 !important;
    line-height: 1.04 !important;
    text-align: center !important;
    box-shadow: 0 26px 70px rgba(8, 17, 31, .11) !important;
    user-select: none !important;
}

.product-detail-content {
    align-self: start !important;
}

.product-detail-content .eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
    padding: 9px 18px !important;
    border-radius: 999px !important;
    background: #eef8fd !important;
    color: var(--brand) !important;
    box-shadow: 0 12px 28px rgba(7, 143, 210, .1) !important;
}

.product-detail-content h1 {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 0 22px !important;
    padding: 18px 26px !important;
    border-radius: 18px !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,0) 45%),
        linear-gradient(135deg, #078fd2 0%, #07aeea 100%) !important;
    color: #fff !important;
    font-size: clamp(34px, 4.4vw, 62px) !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
    box-shadow: 0 24px 58px rgba(7, 143, 210, .22) !important;
    user-select: none !important;
}

.product-detail-content > p {
    max-width: 760px !important;
    margin: 0 0 28px !important;
    color: var(--ink) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.5 !important;
}

.product-detail-content dl {
    margin-top: 18px !important;
}

@media (max-width: 760px) {
    .proof-band .client-section-head h2 {
        padding: 15px 20px !important;
        border-radius: 18px !important;
    }

    .product-detail-content h1 {
        display: flex !important;
        width: 100% !important;
        padding: 16px 18px !important;
        font-size: clamp(30px, 10vw, 42px) !important;
    }
}

/* Final product detail title cleanup: show product name only once. */
.product-detail-content .eyebrow {
    display: none !important;
}

.product-detail-content h1 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding: 16px 24px !important;
    border-radius: 16px !important;
    font-size: clamp(30px, 3.7vw, 52px) !important;
    line-height: 1.08 !important;
}

@media (max-width: 760px) {
    .product-detail-content h1 {
        padding: 14px 16px !important;
        font-size: clamp(28px, 8vw, 38px) !important;
    }
}

/* Final size adjustment for product detail highlight title */
.product-detail-content h1 {
    padding: 14px 22px !important;
    border-radius: 15px !important;
    font-size: clamp(28px, 3.25vw, 46px) !important;
    line-height: 1.12 !important;
}

@media (max-width: 760px) {
    .product-detail-content h1 {
        padding: 13px 15px !important;
        font-size: clamp(26px, 7.2vw, 34px) !important;
    }
}
/* Final smaller product detail highlight title */
.product-detail-content h1 {
    padding: 12px 20px !important;
    font-size: clamp(24px, 2.75vw, 38px) !important;
    line-height: 1.16 !important;
}

@media (max-width: 760px) {
    .product-detail-content h1 {
        padding: 12px 14px !important;
        font-size: clamp(23px, 6.4vw, 30px) !important;
    }
}

/* Final typography tuning for product detail page */
.product-detail-content,
.product-detail-content p,
.product-detail-content dl,
.product-detail-content .content-block {
    font-family: Cambria, Georgia, "Times New Roman", serif !important;
}

.product-detail-content h1 {
    padding: 10px 18px !important;
    border-radius: 14px !important;
    font-family: Cambria, Georgia, "Times New Roman", serif !important;
    font-size: clamp(22px, 2.35vw, 32px) !important;
    font-weight: 900 !important;
    line-height: 1.18 !important;
}

.product-detail-content > p,
.product-detail-content dd {
    font-weight: 400 !important;
}

.product-detail-content dt {
    font-weight: 700 !important;
}

@media (max-width: 760px) {
    .product-detail-content h1 {
        padding: 10px 13px !important;
        font-size: clamp(21px, 5.8vw, 28px) !important;
    }
}

/* Extra small reduction for product detail highlighted title */
.product-detail-content h1 {
    padding: 9px 17px !important;
    font-size: clamp(20px, 2.05vw, 28px) !important;
    line-height: 1.2 !important;
}

@media (max-width: 760px) {
    .product-detail-content h1 {
        padding: 9px 12px !important;
        font-size: clamp(20px, 5.2vw, 26px) !important;
    }
}