:root {
    --aspr-orange: #f5821f;
    --aspr-orange-light: #f7a84d;
    --aspr-gray-bg: #ece8e3;
    --aspr-radius-big: 48px;
    --aspr-font: "Poppins", "Segoe UI", Arial, sans-serif;
    --aspr-fs-pill: 14px;
    --aspr-fs-title: 42px;
    --aspr-fs-subtitle: 22px;
    --aspr-fs-body: 16px;
    --aspr-fs-small: 14px;
}

/* --------- Base --------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--aspr-font);
}

html {
    font-family: var(--aspr-font);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--aspr-font);
    font-weight: 400;
    background: var(--aspr-gray-bg);
    color: #222;
    overflow-x: hidden;
}

body.home,
body.home * {
    font-family: var(--aspr-font) !important;
}

body.page-template-page-about-us,
body.page-template-page-about-us * {
    font-family: var(--aspr-font) !important;
}

/* Ensure all text elements use the same font */
h1, h2, h3, h4, h5, h6,
p, span, a, li, label, input, textarea, button,
.aspr-pill, .aspr-hero-title, .aspr-hero-text,
.aspr-about-pill, .aspr-about-title, .aspr-about-text,
.aspr-nav-link, .aspr-btn, .aspr-footer-heading, .aspr-footer-links a,
.aspr-product-card-title, .aspr-product-card-desc, .aspr-product-read-more,
.aspr-innovation-title, .aspr-innovation-item-title, .aspr-innovation-item-text,
.aspr-global-text, .aspr-global-roadmap-title, .aspr-global-roadmap-list,
.aspr-footer-cta-title, .aspr-footer-cta-text, .aspr-footer-copy, .aspr-footer-credit {
    font-family: var(--aspr-font);
}

a {
    color: inherit;
    text-decoration: none;
}

.aspr-container {
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 24px;
}

.aspr-hero .aspr-container {
    max-width: 100%;
    padding: 0 24px;
}

/* --------- Header (same round shape & place as footer) --------- */
.aspr-header {
    background: var(--aspr-gray-bg);
    padding-bottom: 0;
    width: auto;
    margin-top: 20px;
    margin-left: 32px;
    margin-right: 32px;
}

.aspr-header .aspr-container {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.aspr-header-top {
    height: 0;
    display: none;
}

.aspr-header-main {
    margin-top: 2px;
    margin-bottom: 0;
    min-height: 94px;
    height: 94px;
    padding: 0 44px;
    background: #ffffff;
    border-radius: 28px 28px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    box-shadow: none;
}

.aspr-logo {
    display: inline-flex;
    align-items: center;
}

.aspr-logo-image {
    width: 156px;
    height: auto;
    display: block;
}

.aspr-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.aspr-nav-link {
    color: #6f7378;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.aspr-nav-link--active,
.aspr-nav-link:hover {
    color: #f5821f;
}

.aspr-nav-link--active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--aspr-orange);
    border-radius: 999px;
}

.aspr-btn {
    padding: 10px 12px 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.aspr-btn--dark {
    background: #000;
    color: #fff;
}

.aspr-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.aspr-contact-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--aspr-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aspr-contact-btn-icon-image {
    width: 10px;
    height: 10px;
    object-fit: contain;
    display: block;
}

/* Hamburger menu toggle: hidden on desktop */
.aspr-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
}

.aspr-menu-toggle-line {
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #333;
    display: block;
    transition: background 0.2s ease;
}

.aspr-menu-toggle:hover .aspr-menu-toggle-line {
    background: var(--aspr-orange);
}

/* Nav drawer (mobile): off-canvas left */
.aspr-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
}

.aspr-nav-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.aspr-nav-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.aspr-nav-drawer.is-open .aspr-nav-drawer-backdrop {
    opacity: 1;
}

.aspr-nav-drawer-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(280px, 85vw);
    max-width: 280px;
    background: #fff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.aspr-nav-drawer.is-open .aspr-nav-drawer-panel {
    transform: translateX(0);
}

.aspr-nav-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
}

.aspr-nav-drawer-link {
    display: block;
    padding: 14px 12px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.aspr-nav-drawer-link--active {
    background: transparent;
    color: var(--aspr-orange);
    font-weight: 700;
    border-left: 4px solid var(--aspr-orange);
    padding-left: 16px;
    box-shadow: none;
}

.aspr-nav-drawer-link:hover {
    background: var(--aspr-gray-bg);
    color: var(--aspr-orange);
}

.aspr-nav-drawer-cta {
    margin-top: 16px;
    justify-content: flex-start;
    align-self: flex-start;
    width: auto;
    padding: 8px 10px 8px 16px;
    font-size: 12px;
    gap: 10px;
}

.aspr-nav-drawer-cta .aspr-contact-btn-icon--circle {
    width: 28px;
    height: 28px;
}

.aspr-nav-drawer-cta .aspr-contact-btn-icon-image {
    width: 10px;
    height: 10px;
}

/* --------- Hero (full size like screenshot) --------- */
/* Section margin = same inset as header; inner container has no side padding so left+right blocks use full width */
.aspr-hero {
    padding: 24px 0 0;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    /* Keep same side spacing as header/footer line */
    margin-left: 32px;
    margin-right: 32px;
    width: auto;
    max-width: none;
    box-sizing: border-box;
}

.aspr-hero .aspr-container.aspr-hero-grid {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.aspr-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 820px;
}

/* Method 1: whole hero is one Smart Slider (left + right designed in SS) */
.aspr-hero-grid--full-ss {
    grid-template-columns: 1fr;
    min-height: 730px;
}

.aspr-hero-ss-full.aspr-hero-smart-slider {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Unified hero: each slide = full left + full right; track slides horizontally */
.aspr-hero-unified {
    position: relative;
    width: 100%;
    min-height: 820px;
}

.aspr-hero-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: var(--aspr-gray-bg);
}

.aspr-hero-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    will-change: transform;
    transform: translateZ(0);
}

.aspr-hero-slide-page {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    margin-right: 24px;
    align-items: stretch;
    box-sizing: border-box;
    transform: translateZ(0);
}

/* Right = Smart Slider 3; left column track stays in sync via theme JS */
.aspr-hero-unified--smart {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.aspr-hero-unified--smart .aspr-hero-viewport {
    min-width: 0;
}

.aspr-hero-unified--smart .aspr-hero-slide-page--sync {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.aspr-hero-slide-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 28px 28px 20px 20px;
}

.aspr-hero-slider-controls--hidden {
    display: none !important;
}

.aspr-hero-unified .aspr-hero-slider-controls {
    position: absolute;
    right: 18px;
    bottom: 20px;
    z-index: 8;
}

.aspr-hero-left {
    background: var(--aspr-orange);
    border-radius: 28px 28px 20px 20px;
    padding: 48px 64px 48px 126px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 820px;
    height: 820px;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.aspr-hero-left-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

/* Desktop hero: slight upward shift to match Figma alignment */
@media (min-width: 901px) {
    .aspr-hero-left-inner {
        transform: translateY(-26px);
    }
}

.aspr-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 22px;
    background: #123c74;
    border: 0;
    box-shadow: none;
    border-radius: 999px;
    margin-bottom: 18px;
    z-index: 2;
    letter-spacing: -0.01em;
    line-height: 1.08;
    color: #ffffff;
}

.aspr-hero-title {
    font-size: clamp(32px, 3vw, 52px);
    line-height: 1.06;
    font-weight: 600;
    max-width: 520px;
    margin-bottom: 28px;
    z-index: 2;
    letter-spacing: -0.02em;
    text-align: left;
}

.aspr-hero-title-line {
    display: block;
    white-space: nowrap;
    line-height: 1.06;
    margin: 0;
    text-align: left;
    padding-left: 0;
    text-indent: 0;
}

.aspr-hero-title-line + .aspr-hero-title-line {
    margin-top: 8px;
}

.aspr-hero-bottom-row {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.aspr-hero-text {
    font-size: 18px;
    line-height: 1.66;
    max-width: 400px;
    margin-top: 0;
}

.aspr-hero-text-line {
    display: block;
    white-space: nowrap;
}

.aspr-hero-cta {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
}

.aspr-hero-pattern {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.2;
    pointer-events: none;
}

.aspr-hero-right {
    background: var(--aspr-gray-bg);
    border-radius: 28px 28px 20px 20px;
    padding: 0;
    height: 820px;
    min-height: 820px;
    overflow: hidden;
    position: relative;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.aspr-hero-smart-slider {
    width: 100%;
    height: 100%;
    min-height: 820px;
    border-radius: 28px 28px 20px 20px;
    overflow: hidden;
    background: #eef2f6;
}

.aspr-hero-mobile-gallery {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 730px;
    overflow: hidden;
    border-radius: 28px 28px 20px 20px;
    background: #eef2f6;
}

.aspr-hero-smart-slider .n2-ss-slider-frame,
.aspr-hero-smart-slider .n2-ss-slider,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-1,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-2,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-3,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-4,
.aspr-hero-smart-slider .n2-ss-slider,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-1,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-2,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-3 {
    width: 100% !important;
    height: 100% !important;
}

.aspr-hero-smart-slider .n2-section-smartslider,
.aspr-hero-smart-slider .n2-ss-align {
    width: 100% !important;
    height: 100% !important;
    min-height: 730px !important;
}

.aspr-hero-smart-slider .n2-ss-slide-limiter,
.aspr-hero-smart-slider .n2-ss-slider-wrapper-inside,
.aspr-hero-smart-slider .n2-ss-slider-wrapper-outside {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 730px !important;
    margin: 0 !important;
}

.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-4,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-backgrounds,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide {
    width: 100% !important;
    height: 100% !important;
    min-height: 730px !important;
}

.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image,
.aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.aspr-hero-smart-slider .n2-ss-slide-background-image {
    background-size: cover !important;
    background-position: center center !important;
}

.aspr-hero-smart-slider .n2-ss-slider .n2-ow,
.aspr-hero-smart-slider .n2-ss-slider .n2-ow-all * {
    max-width: none !important;
}

.aspr-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px 28px 20px 20px;
    object-fit: cover;
    object-position: center center;
    display: block;
    min-width: 100%;
    min-height: 100%;
}

.aspr-hero-mobile-gallery .aspr-hero-image {
    display: block !important;
    opacity: 0;
    transform: translateX(0);
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.aspr-hero-mobile-gallery .aspr-hero-image.is-active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.aspr-hero-mobile-gallery .aspr-hero-image.is-enter-next {
    opacity: 1;
    transform: translateX(100%);
    z-index: 1;
}

.aspr-hero-mobile-gallery .aspr-hero-image.is-enter-prev {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 1;
}

.aspr-hero-mobile-gallery .aspr-hero-image.is-leave-next {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 1;
}

.aspr-hero-mobile-gallery .aspr-hero-image.is-leave-prev {
    opacity: 1;
    transform: translateX(100%);
    z-index: 1;
}

.aspr-hero-slider-controls {
    position: absolute;
    right: 18px;
    bottom: 20px;
    display: flex;
    gap: 12px;
    z-index: 50;
    pointer-events: auto;
}

.aspr-hero-slider-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.aspr-hero-indicator-wrap {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
}

.aspr-hero-down-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.aspr-hero-indicator {
    border-radius: 14px;
    background: #1f2327;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
}

.aspr-hero-indicator button {
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.aspr-hero-indicator span {
    min-width: 54px;
    text-align: center;
    font-size: 14px;
}

.aspr-hero-icon {
    display: block;
    max-width: 100%;
    height: auto;
}

.aspr-hero-icon--cta {
    width: 112px;
    filter: brightness(0) invert(1);
}

.aspr-hero-icon--down {
    width: 100px;
}

.aspr-hero-icon--slide,
.aspr-hero-icon--indicator {
    width: 36px;
}

/* --------- About section --------- */
.aspr-about {
    padding: 78px 0 80px;
}

.aspr-about-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
    gap: 0;
    align-items: flex-start;
    margin-bottom: 34px;
}

.aspr-about-pill {
    display: inline-flex;
    align-items: center;
    border: 1px dashed rgba(0, 51, 102, 0.5);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: var(--aspr-fs-pill);
    font-weight: 700;
    text-transform: uppercase;
    color: #063E7E;
    margin-bottom: 18px;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.aspr-about-title {
    font-size: clamp(30px, 2.4vw, 44px);
    font-weight: 600;
    color: #111;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.aspr-about-text {
    /*font-size: clamp(16px, 1.28vw, 19px);*/
    line-height: 1.68;
    color: #000;
    max-width: 1180px;
    font-size: 20px;
}

.aspr-about-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.26fr) minmax(0, 0.72fr);
    gap: 24px;
    align-items: stretch;
}

.aspr-about-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 34px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aspr-about-card-img-wrap {
    width: 100%;
    height: 230px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.aspr-about-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.aspr-about-card-media {
    width: 100%;
    height: 230px;
    border-radius: 18px;
    background: #e5e7eb;
}

.aspr-about-card-media--vision {
    background-image: url('../images/about-vision.png');
    background-size: cover;
    background-position: center;
    height: 215px;
}

.aspr-about-card-media--mission {
    background-image: url('../images/about-mission.png');
    background-size: cover;
    background-position: center;
}

.aspr-about-card-media--experience {
    background-image: url('../images/about-experience.png');
    background-size: cover;
    background-position: center;
}

.aspr-about-card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aspr-about-card-title-line {
    display: block;
    line-height: 1.06;
}

.aspr-round-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.aspr-round-icon--orange {
    background: #f5821f;
}

.aspr-round-icon--light {
    background: #fff;
}

.aspr-round-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.aspr-about-card-title {
    font-size: clamp(22px, 1.75vw, 30px);
    font-weight: 700;
    color: #000;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
}

.aspr-about-card-text {
    /*font-size: clamp(15px, 1.08vw, 17px);*/
    color: #000;
    line-height: 1.5;
    max-width: 94%;
    font-size: 16px;
}

.aspr-about-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.aspr-about-list li {
    position: relative;
    padding-left: 26px;
    /*font-size: clamp(15px, 1.08vw, 17px);*/
    color: #000;
    line-height: 1.5;
    font-size: 16px;
}

.aspr-about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    border-radius: 50%;
    aspect-ratio: 1;
    background: radial-gradient(circle at 50% 50%, #fff 0, #fff 3px, #0a4282 3px);
    transform: translateY(-50%);
}

.aspr-about-card--accent {
    background: #0a4282;
    color: #ffffff;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding-top: 42px;
}

.aspr-about-experience-icon {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 84px;
    height: 84px;
    z-index: 2;
}

/* 20+ Years section: white circle, dark blue icon (screenshot) */
.aspr-about-card--accent .aspr-round-icon--light {
    background: #ffffff;
}
.aspr-about-card--accent .aspr-round-icon--light .aspr-round-icon-img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(53%) saturate(1847%) hue-rotate(188deg) brightness(88%) contrast(96%);
}

.aspr-about-card--accent .aspr-round-icon-img {
    width: 30px;
    height: 30px;
}

.aspr-about-pattern {
    position: absolute;
    left: 0;
    right: 0;
    top: 96px;
    width: 100%;
    opacity: 0.18;
    z-index: 1;
}

.aspr-about-card-metric {
    margin-top: auto;
    z-index: 2;
    position: relative;
    max-width: 220px;
}

.aspr-about-card-metric-value {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em; font-size: 60px; line-height: 40px;
}

.aspr-about-card-metric-label {
    line-height: 1.28
    letter-spacing: -0.02em;
    display: block;
    max-width: 220px; font-size: 18px; font-weight: 700
}

.aspr-section-divider {
    height: 1px;
    background: #bcb5ac;
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* --------- Innovation & Research (home: white card, blue header, 2-col with divider) --------- */
.aspr-innovation {
    padding: 80px 0 80px;
    background: #faf6f1;
}

.aspr-innovation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
    gap: 56px;
    align-items: start;
}

.aspr-innovation-media {
    border-radius: 26px;
    background: #e5e7eb;
    height: 560px;
}

.aspr-innovation-media--lab {
    background-image: url('../images/innovation-lab.png');
    background-size: cover;
    background-position: center;
}

.aspr-innovation-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.aspr-innovation-title {
    font-size: clamp(28px, 2.2vw, 42px);
    font-weight: 600;
    color: #111;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.aspr-innovation-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
}

.aspr-innovation-item:nth-child(2n) {
    /*border-left: 1px solid #e0e0e0;*/
    padding-left: 40px;
}

.aspr-innovation-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aspr-innovation-item .aspr-round-icon {
    margin-bottom: 14px;
}

.aspr-innovation-item-title {
    /*font-size: clamp(17px, 1.15vw, 22px);*/
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.14;
    letter-spacing: -0.01em; font-size: 20px;
}

.aspr-innovation-item-text {
    font-size: clamp(14px, 1vw, 16px);
    color: #333;
    line-height: 1.6;
    max-width: 100%;
}

/* --------- Our Products --------- */
.aspr-products {
    padding: 72px 0 80px;
    background: #fff;
    margin-left: 32px;
    margin-right: 32px;
    border-radius: 28px 28px 20px 20px;
    overflow: hidden;
}

.aspr-products-header {
    text-align: center;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aspr-products-title {
    font-size: clamp(30px, 2.4vw, 44px);
    font-weight: 600;
    color: #111;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 2px 0 0;
}

.aspr-products-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    max-width: calc((340px * 4) + (24px * 3) + 160px);
    margin: 0 auto;
    padding: 0 68px;
    overflow: hidden;
}

.aspr-products-arrow {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #bbb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.aspr-products-arrow--prev { left: 0; }
.aspr-products-arrow--next { right: 0; }

.aspr-products-arrow:hover {
    border-color: var(--aspr-orange);
    box-shadow: 0 2px 12px rgba(245, 130, 31, 0.2);
}

.aspr-products-arrow-icon,
.aspr-products-arrow-icon-img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}
.aspr-products-arrow-icon { font-size: 22px; color: #333; }

.aspr-products-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    position: relative;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 2px;
    scroll-padding-left: 2px;
    scroll-padding-right: 2px;
    flex: 0 1 min(100%, calc((340px * 4) + (24px * 3)));
    width: min(100%, calc((340px * 4) + (24px * 3) + 4px));
    max-width: calc((340px * 4) + (24px * 3) + 4px);
    min-width: 0;
    justify-content: flex-start;
    align-items: stretch;
    scrollbar-width: none;
    box-sizing: border-box;
}

@media (min-width: 1201px) {
    .aspr-products .aspr-container {
        max-width: calc((340px * 4) + (24px * 3));
        padding-left: 0;
        padding-right: 0;
    }

    /* Home carousel only — products page uses multi-row grid; must not lock carousel width */
    .aspr-products:not(.aspr-products-page) .aspr-products-carousel-wrap {
        max-width: calc((340px * 4) + (24px * 3));
        padding: 0;
        overflow: visible;
    }

    .aspr-products:not(.aspr-products-page) .aspr-products-carousel {
        width: calc((340px * 4) + (24px * 3));
        max-width: calc((340px * 4) + (24px * 3));
        padding-left: 0;
        padding-right: 0;
        scroll-padding-left: 0;
        scroll-padding-right: 0;
    }

    /* Keep arrows away from card edges so nothing looks cut */
    .aspr-products:not(.aspr-products-page) .aspr-products-arrow--prev { left: -68px; }
    .aspr-products:not(.aspr-products-page) .aspr-products-arrow--next { right: -68px; }
}

.aspr-products-carousel::-webkit-scrollbar {
    display: none;
}

.aspr-product-card {
    flex: 0 0 340px;
    width: 340px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #b9c8dd;
    border-bottom: 4px solid #0a4282;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
    min-height: 560px;
    max-height: 560px;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.aspr-product-card:hover {
    border-color: #003366;
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.18);
}

.aspr-product-card--active {
    border-color: #003366;
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.18);
}

.aspr-product-card-img {
    height: 325px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    padding: 16px;
}

.aspr-product-card-img img {
    width: 100%;
    height: 100%;
    max-width: 260px;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.aspr-product-card--last .aspr-product-card-img {
    height: 325px;
}

.aspr-product-card--last .aspr-product-card-img img {
    object-fit: contain;
    object-position: center;
}

.aspr-product-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 auto 10px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    align-self: center;
    max-width: calc(100% - 12px);
    width: 100%;
}

.aspr-product-card-desc {
    font-size: 16px;
    color: #000;
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1 1 auto;
    min-height: 70px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

/* Read More: a little smaller, visible only on product card hover (or tap on mobile via --active) */
.aspr-product-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 20px;
    background: var(--aspr-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: opacity 0.2s ease, visibility 0.2s ease, box-shadow 0.2s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    text-decoration: none;
    margin-top: auto;
    align-self: center;
}

.aspr-product-card:hover .aspr-product-read-more {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.aspr-product-card.aspr-product-card--active .aspr-product-read-more {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(245, 130, 31, 0.35);
}

.aspr-product-read-more:hover {
    opacity: 0.95;
    box-shadow: 0 4px 12px rgba(245, 130, 31, 0.35);
}

.aspr-product-read-more-text {
    flex-shrink: 0;
}

.aspr-product-read-more-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: #003d79;
    border-radius: 50%;
    margin-left: 2px;
}

.aspr-product-read-more-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* --------- Global Presence --------- */
.aspr-global {
    padding: 64px 0 72px;
    background: var(--aspr-gray-bg);
}

.aspr-global-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.86fr) minmax(460px, 1.18fr) minmax(280px, 0.9fr);
    gap: 20px;
    align-items: center;
    margin-top: 0;
}

.aspr-global-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
    padding-left: 0;
}

.aspr-global-left .aspr-contact-btn {
    align-self: flex-start;
    margin-top: 4px;
}

/* Global Contact Us: orange pill, white text, white circle with black arrow (match screenshot) */
.aspr-contact-btn--global {
    background: var(--aspr-orange);
    color: #fff;
    padding: 12px 18px 12px 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease, box-shadow 0.2s;
}

.aspr-contact-btn--global:hover {
    opacity: 0.95;
    box-shadow: 0 4px 12px rgba(245, 130, 31, 0.35);
}

.aspr-contact-btn--global .aspr-contact-btn-icon--circle {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 2px;
}

.aspr-contact-btn--global .aspr-contact-btn-icon-image {
    width: 13px;
    height: 13px;
    object-fit: contain;
    filter: brightness(0);
}

.aspr-global-text {
    font-size: 18px;
    line-height: 1.9;
    color: #1f1f1f;
    max-width: 440px;
    font-weight: 400;
}

.aspr-global-text-line {
    display: block;
    white-space: nowrap;
}

.aspr-btn--orange {
    background: var(--aspr-orange);
    color: #fff;
}

.aspr-global-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-left: 0;
    padding-right: 18px;
}

.aspr-global-map {
    width: 100%;
    max-width: 580px;
    aspect-ratio: 1.5;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

.aspr-global-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: brightness(0) saturate(100%) invert(18%) sepia(53%) saturate(1847%) hue-rotate(188deg) brightness(88%) contrast(96%);
}

.aspr-global-right {
    padding-left: 0;
    padding-top: 8px;
}

.aspr-global-roadmap-title {
    font-size: 21px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.06;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 0;
    letter-spacing: -0.01em;
}

.aspr-global .aspr-products-title {
    font-size: clamp(30px, 2.4vw, 44px);
    line-height: 1.08;
}

.aspr-global-roadmap-list {
    list-style: none;
}

.aspr-global-roadmap-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.85;
    color: #1f1f1f;
    font-weight: 400;
}

.aspr-global-roadmap-line {
    display: block;
    /*white-space: nowrap;*/
    color: inherit;
}

.aspr-global-roadmap-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    border-radius: 50%;
    aspect-ratio: 1;
    background: radial-gradient(circle at 50% 50%, #fff 0, #fff 3px, #0a4282 3px);
}

/* --------- Footer CTA strip (same as screenshot: layout, overlay, responsive) --------- */
.aspr-footer-cta {
    padding: clamp(72px, 8.8vw, 102px) 0;
    position: relative;
    overflow: hidden;
    border-radius: 28px 28px 20px 20px;
    margin-left: 32px;
    margin-right: 32px;
    min-height: 296px;
    background-color: var(--aspr-orange);
}

.aspr-footer-cta-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
    pointer-events: none;
}

.aspr-footer-cta-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(120, 55, 20, 0.52);
    z-index: 1;
    pointer-events: none;
}

.aspr-footer-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 1fr) auto;
    gap: clamp(34px, 4vw, 72px);
    align-items: center;
    max-width: 1510px;
    margin: 0 auto;
}

.aspr-footer-cta-left {
    min-width: 0;
}

.aspr-about-pill--cta {
    background: transparent;
    color: #fff;
    border: 1px dashed rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    display: inline-block;
}

.aspr-footer-cta-title {
    font-size: clamp(28px, 2.2vw, 42px);
    font-weight: 600;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    max-width: 520px;
}

.aspr-footer-cta-center {
    min-width: 0;
}

.aspr-footer-cta-text {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: 430px;
}

.aspr-footer-cta-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

/* CTA section: white pill button, dark text, orange icon (screenshot) */
.aspr-footer-cta .aspr-contact-btn,
.aspr-footer-cta .aspr-btn.aspr-contact-btn {
    background: #ffffff;
    color: #1a1a1a;
    padding: 12px 18px 12px 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    gap: 10px;
    text-decoration: none;
}
.aspr-footer-cta .aspr-contact-btn:hover,
.aspr-footer-cta .aspr-btn.aspr-contact-btn:hover {
    background: #f8f8f8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.aspr-footer-cta .aspr-contact-btn .aspr-contact-btn-icon--circle {
    background: var(--aspr-orange);
    width: 30px;
    height: 30px;
    margin-left: 2px;
}
.aspr-footer-cta .aspr-contact-btn .aspr-contact-btn-icon-image {
    width: 13px;
    height: 13px;
    filter: brightness(0) invert(1);
}

.aspr-contact-btn-icon--dark {
    background: transparent;
    border: 2px solid var(--aspr-orange);
}

.aspr-contact-btn-icon--dark .aspr-contact-btn-icon-image {
    filter: invert(48%) sepia(96%) saturate(1200%) hue-rotate(360deg);
}

/* --------- Footer main --------- */
.site-footer.aspr-footer {
    background: #292929;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    margin-left: 32px;
    margin-right: 32px;
    margin-top: 2px;
    margin-bottom: 60px;
    border-radius: 28px 28px 20px 20px;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: none;
}

.aspr-footer-bg-pattern {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
}

.aspr-footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1.3fr);
    gap: 62px;
    padding-bottom: 84px;
}

.aspr-footer-col--logo {
    display: flex;
    align-items: flex-start;
}

.aspr-footer-logo {
    background: #fff;
    padding: 22px 32px;
    border-radius: 16px;
    border: 2px solid var(--aspr-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.aspr-footer-logo-image {
    width: 148px;
    height: auto;
    display: block;
}

.aspr-footer-logo-main {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.aspr-footer-logo-sub {
    font-size: 12px;
    color: #444;
}

.aspr-footer-heading {
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
}

.aspr-footer-links {
    list-style: none;
}

.aspr-footer-links li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.aspr-footer-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.aspr-footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.aspr-footer-contact {
    list-style: none;
}

.aspr-footer-contact li {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--aspr-font);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.aspr-footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.aspr-footer-contact-label {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.aspr-footer-contact-value {
    font-size: 1.125em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    display: block;
    line-height: 1.4;
}

/* Address lines: keep light (not dark) */
.aspr-footer-contact li .aspr-footer-contact-label {
    color: rgba(255, 255, 255, 0.8);
}

.aspr-footer-contact li .aspr-footer-contact-value {
    color: rgba(255, 255, 255, 0.92);
}

.aspr-footer-contact li:last-child .aspr-footer-contact-label,
.aspr-footer-contact li:last-child .aspr-footer-contact-value {
    font-size: 1em;
}

.aspr-footer-contact li:last-child .aspr-footer-contact-label {
    color: rgba(255, 255, 255, 0.8);
}

.aspr-footer-contact li:last-child .aspr-footer-contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.aspr-footer-address-line {
    display: block;
    white-space: nowrap;
}

.aspr-footer-contact a.aspr-footer-contact-value:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

/* Footer Contact us: white circle, dark blue icon (screenshot) */
.aspr-footer-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aspr-footer-contact-icon .aspr-footer-icon-img,
.aspr-footer-contact-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

.aspr-footer-contact-icon img.aspr-footer-icon-img {
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(18%) sepia(53%) saturate(1847%) hue-rotate(188deg) brightness(88%) contrast(96%);
}

.aspr-footer-contact-icon svg.aspr-footer-icon-img {
    color: #003d7a;
    stroke: currentColor;
}

/* --------- Footer bottom strip (copyright | social icons | credit) --------- */
.aspr-footer-bottom {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 22px 0;
    border-radius: 0 0 20px 20px;
    background: var(--aspr-orange);
    border: none;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
}

.aspr-footer-bottom-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.aspr-footer-bottom-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(166, 85, 30, 0.58);
    z-index: 1;
    pointer-events: none;
}

.aspr-footer-bottom-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.aspr-footer-copy,
.aspr-footer-credit {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    flex-shrink: 0; font-weight: 300;
}

.aspr-footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    padding: 0;
}

.aspr-footer-social-link {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.aspr-footer-social-link svg {
    width: 20px;
    height: 20px;
    display: block;
    color: #000;
}

.aspr-footer-social-link img {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    object-position: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: brightness(0);
    -webkit-filter: brightness(0);
}

.aspr-footer-social-link .aspr-footer-social-icon-svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #000;
}

.aspr-footer-social-link:hover {
    opacity: 0.9;
}

.aspr-footer-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

/* --------- Basic responsive --------- */
@media (max-width: 900px) {
    .aspr-hero {
        margin-left: 20px;
        margin-right: 20px;
    }

    .aspr-hero .aspr-container.aspr-hero-grid {
        padding-left: 0;
        padding-right: 0;
    }

    .aspr-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: auto;
    }

    .aspr-hero-slide-page {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 16px;
        margin-right: 16px;
    }

    .aspr-hero-unified {
        min-height: auto;
    }

    .aspr-header-main {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-radius: 32px;
        padding: 12px 18px;
        min-height: auto;
        height: auto;
        gap: 12px;
    }

    .aspr-nav,
    .aspr-header-contact-btn {
        display: none !important;
    }

    .aspr-menu-toggle {
        display: flex;
        margin-left: auto;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .aspr-menu-toggle-line {
        background: #333;
    }

    .aspr-menu-toggle:hover .aspr-menu-toggle-line {
        background: var(--aspr-orange);
    }

    .aspr-nav-link {
        font-size: 16px;
        padding-bottom: 4px;
    }

    .aspr-btn {
        font-size: 13px;
        padding: 8px 8px 8px 16px;
    }

    .aspr-contact-btn-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .aspr-hero {
        min-height: auto;
        padding: 16px 0 0;
    }

    .aspr-hero-grid {
        min-height: auto;
    }

    .aspr-hero-left,
    .aspr-hero-right {
        min-height: auto;
        height: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 32px;
    }

    .aspr-hero-right {
        min-height: 0;
        height: 420px;
        aspect-ratio: auto;
        order: 2;
        overflow: hidden;
        display: block;
        background: transparent;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider {
        display: none;
    }

    .aspr-hero-mobile-gallery {
        display: block;
        width: 100%;
        min-height: 420px;
        height: 420px;
        flex: 0 0 420px;
        border-radius: inherit;
        position: relative;
        overflow: hidden;
    }

    .aspr-hero-mobile-gallery .aspr-hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        border-radius: inherit;
        object-fit: cover;
        object-position: center center;
    }

    .aspr-hero-unified--smart {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: auto;
    }

    .aspr-hero-unified--smart .aspr-hero-viewport {
        order: 1;
    }

    .aspr-hero-unified--smart .aspr-hero-right {
        order: 2;
        height: 420px;
        min-height: 420px;
    }

    .aspr-hero--full-smartslider .aspr-hero-ss-full.aspr-hero-smart-slider {
        height: 420px;
        min-height: 420px;
        border-radius: 32px;
        overflow: hidden;
    }

    .aspr-hero-unified--smart .aspr-hero-smart-slider,
    .aspr-hero-smart-slider .n2-section-smartslider,
    .aspr-hero-smart-slider .n2-ss-align,
    .aspr-hero-smart-slider .n2-ss-slide-limiter,
    .aspr-hero-smart-slider .n2-ss-slider-wrapper-inside,
    .aspr-hero-smart-slider .n2-ss-slider-wrapper-outside,
    .aspr-hero-smart-slider .n2-ss-slider,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-1,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-2,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-3,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-4 {
        min-height: 420px !important;
        height: 420px !important;
        overflow: hidden !important;
    }

    .aspr-hero-smart-slider {
        background: #eef2f6;
    }

    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-backgrounds,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-backgrounds,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background,
    .aspr-hero-smart-slider .n2-ss-slide-background-image {
        inset: 0 !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .aspr-hero-smart-slider .n2-ss-slider .n2-ow,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ow-all * {
        max-width: 100% !important;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide.n2-ss-slide-active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .aspr-hero-slider-controls {
        display: flex !important;
        position: absolute;
        right: 14px;
        bottom: 14px;
        gap: 12px;
        margin-top: 2px;
        z-index: 8;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .nextend-arrow-previous,
    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .nextend-arrow-next,
    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .n2-ss-widget-arrow {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .aspr-hero-left {
        padding: 32px 24px 56px;
        min-height: 420px;
        order: 1;
    }

    .aspr-pill {
        font-size: 12px;
        margin-bottom: 18px;
        padding: 8px 14px;
    }

    .aspr-hero-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .aspr-hero-bottom-row {
        gap: 18px;
        align-items: center;
    }

    .aspr-hero-cta {
        width: 72px;
        height: 72px;
    }

    .aspr-hero-icon--cta {
        width: 72px;
    }

    .aspr-hero-text {
        font-size: 14px;
        max-width: 100%;
    }

    .aspr-hero-image {
        position: absolute;
        inset: 0;
        border-radius: 32px;
    }

    .aspr-hero-right {
        border-radius: 32px;
    }

    .aspr-hero-slider-controls {
        right: 14px;
        bottom: 14px;
    }

    .aspr-hero-indicator-wrap {
        bottom: -34px;
    }

    .aspr-about-top {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .aspr-about {
        padding: 46px 0 30px;
    }

    .aspr-about-pill {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 12px;
    }

    .aspr-about-title {
        font-size: 46px;
        font-size: clamp(28px, 8vw, 42px);
    }

    .aspr-about-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .aspr-about-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aspr-about-card {
        padding: 20px;
        gap: 14px;
    }

    .aspr-about-card-media {
        height: 190px;
    }

    .aspr-round-icon {
        width: 56px;
        height: 56px;
    }

    .aspr-round-icon-img {
        width: 24px;
        height: 24px;
    }

    .aspr-about-card-title {
        font-size: 38px;
        font-size: clamp(28px, 7vw, 34px);
    }

    .aspr-about-card-text {
        font-size: 16px;
    }

    .aspr-about-list li {
        font-size: 16px;
        padding-left: 24px;
    }

    .aspr-about-experience-icon {
        top: 18px;
        left: 18px;
        width: 62px;
        height: 62px;
    }

    .aspr-about-card-metric-value {
        font-size: 52px;
    }

    .aspr-about-card-metric-label {
        font-size: 22px;
    }

    .aspr-section-divider {
        margin-top: 12px;
    }

    .aspr-innovation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .aspr-innovation {
        padding: 42px 0 60px;
    }

    .aspr-innovation-media {
        height: 330px;
    }

    .aspr-innovation-title {
        font-size: 46px;
        font-size: clamp(28px, 8vw, 42px);
        margin-bottom: 18px;
    }

    .aspr-innovation-items {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .aspr-innovation-item:nth-child(2n) {
        border-left: none;
        padding-left: 0;
    }

    .aspr-innovation-item {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 6px;
        align-items: start;
    }

    .aspr-innovation-item .aspr-round-icon {
        margin-bottom: 0;
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 40px;
        height: 40px;
    }

    .aspr-innovation-item-title {
        font-size: 30px;
        font-size: clamp(20px, 5.2vw, 28px);
        grid-column: 2;
        margin-bottom: 0;
        line-height: 1.14;
        letter-spacing: -0.01em;
        font-weight: 600;
    }

    .aspr-innovation-item-text {
        font-size: 15px;
        max-width: 100%;
        grid-column: 2;
    }

    .aspr-hero-indicator-wrap {
        bottom: -18px;
        gap: 10px;
    }

    .aspr-hero-down-btn {
        width: 70px;
        height: 70px;
    }

    .aspr-hero-indicator {
        padding: 8px 10px;
    }

    .aspr-hero-indicator button {
        width: 28px;
        height: 28px;
    }

    .aspr-hero-icon--down {
        width: 70px;
    }

    .aspr-hero-icon--slide,
    .aspr-hero-icon--indicator {
        width: 28px;
    }

    .aspr-products {
        padding: 48px 0 56px;
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 24px 24px 18px 18px;
    }

    .aspr-products-header {
        margin-bottom: 24px;
    }

    .aspr-products-carousel-wrap {
        flex-direction: row;
        gap: 12px;
    }

    .aspr-products-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .aspr-products-arrow-icon,
    .aspr-products-arrow-icon-img {
        width: 18px;
        height: 18px;
    }
    .aspr-products-arrow-icon { font-size: 18px; }

    .aspr-products-carousel {
        gap: 12px;
        -webkit-overflow-scrolling: touch;
    }

    /* Our Products (home + listing): one full-width slide; arrows move one card */
    .aspr-products .aspr-products-carousel {
        flex: 1 1 auto;
        width: 100%;
        max-width: none;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
    }

    .aspr-product-card {
        min-height: 432px;
        max-height: none;
        padding: 18px;
        border-radius: 16px;
    }

    .aspr-products .aspr-products-carousel .aspr-product-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .aspr-product-card-img {
        height: 200px;
        margin-bottom: 10px;
        padding: 10px;
    }

    .aspr-product-card--last .aspr-product-card-img {
        height: 200px;
    }

    .aspr-product-card-title {
        font-size: 16px;
        min-height: 48px;
        margin-bottom: 8px;
    }

    .aspr-product-card-desc {
        font-size: 13px;
        min-height: 0;
        flex: 0 1 auto;
        margin-bottom: 0;
    }

    .aspr-product-read-more {
        margin-top: auto;
    }

    .aspr-global-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aspr-global-map {
        max-width: 100%;
    }

    .aspr-footer-cta-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .aspr-footer-cta-left {
        max-width: none;
    }

    .aspr-footer-cta-center {
        text-align: center;
    }

    .aspr-footer-cta-right {
        justify-content: center;
    }

    .aspr-footer-cta-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .aspr-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .aspr-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .aspr-footer-social {
        order: 0;
    }

    .site-footer.aspr-footer {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 2px;
        margin-bottom: 40px;
        border-radius: 24px 24px 18px 18px;
        padding-top: 52px;
    }

    .aspr-footer-bottom {
        border-radius: 0 0 18px 18px;
    }

    .aspr-footer-cta {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 0;
        border-radius: 24px 24px 18px 18px;
    }

    .aspr-header {
        margin-left: 20px;
        margin-right: 20px;
    }

    .aspr-header .aspr-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .aspr-header-main {
        border-radius: 24px 24px 18px 18px;
    }

    .aspr-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* --------- Small mobile (phones) --------- */
@media (max-width: 600px) {
    .aspr-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aspr-hero {
        margin-left: 16px;
        margin-right: 16px;
    }

    .aspr-hero .aspr-container.aspr-hero-grid {
        padding-left: 0;
        padding-right: 0;
    }

    .aspr-header {
        margin-left: 16px;
        margin-right: 16px;
    }

    .aspr-header .aspr-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aspr-header-main {
        padding: 14px 16px;
        border-radius: 20px 20px 16px 16px;
        gap: 14px;
    }

    .aspr-nav {
        gap: 12px;
    }

    .aspr-nav-link {
        font-size: 14px;
    }

    .aspr-logo-image {
        max-height: 34px;
        width: auto;
    }

    .aspr-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .aspr-hero-left {
        padding: 24px 16px 48px;
        min-height: 360px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 28px;
    }

    .aspr-hero-right {
        min-height: 0;
        height: 400px;
        aspect-ratio: auto;
        overflow: hidden;
        display: block;
        background: transparent;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 28px;
    }

    .aspr-hero-mobile-gallery {
        width: 100%;
        min-height: 400px;
        height: 400px;
        flex: 0 0 400px;
        border-radius: inherit;
        position: relative;
        overflow: hidden;
    }

    .aspr-hero-mobile-gallery .aspr-hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        border-radius: inherit;
        object-fit: cover;
        object-position: center center;
    }

    .aspr-hero-smart-slider,
    .aspr-hero-smart-slider .n2-section-smartslider,
    .aspr-hero-smart-slider .n2-ss-align,
    .aspr-hero-smart-slider .n2-ss-slide-limiter,
    .aspr-hero-smart-slider .n2-ss-slider-wrapper-inside,
    .aspr-hero-smart-slider .n2-ss-slider-wrapper-outside,
    .aspr-hero-smart-slider .n2-ss-slider,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-1,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-2,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-3,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-4 {
        min-height: 360px !important;
        height: 360px !important;
        overflow: hidden !important;
    }

    .aspr-hero-smart-slider {
        background: #eef2f6;
    }

    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-backgrounds,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-backgrounds,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background,
    .aspr-hero-smart-slider .n2-ss-slide-background-image {
        inset: 0 !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .aspr-hero-smart-slider .n2-ss-slider .n2-ow,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ow-all * {
        max-width: 100% !important;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide.n2-ss-slide-active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .aspr-hero-slider-controls {
        display: flex !important;
        position: absolute;
        right: 12px;
        bottom: 12px;
        gap: 10px;
        margin-top: 0;
        z-index: 8;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .nextend-arrow-previous,
    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .nextend-arrow-next,
    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider .n2-ss-widget-arrow {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .aspr-hero-slider-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 10px 24px rgba(18, 60, 116, 0.12);
    }

    .aspr-hero-icon--slide {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .aspr-hero-title {
        font-size: 28px;
        margin-bottom: 16px;
        max-width: 100%;
        line-height: 1.18;
    }

    .aspr-pill {
        font-size: 11px;
        padding: 7px 14px;
    }

    .aspr-hero-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .aspr-hero-cta {
        width: 56px;
        height: 56px;
    }

    .aspr-hero-icon--cta {
        width: 56px;
    }

    .aspr-hero-bottom-row {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .aspr-hero-indicator-wrap {
        bottom: -28px;
    }

    .aspr-about-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .aspr-about-text {
        font-size: 14px;
    }

    .aspr-about-cards {
        gap: 12px;
    }

    .aspr-about-card {
        padding: 16px;
    }

    .aspr-about-card--accent {
        padding-top: 28px;
        min-height: 200px;
    }

    .aspr-about-experience-icon {
        top: 14px;
        left: 14px;
        width: 48px;
        height: 48px;
    }

    .aspr-about-card--accent .aspr-round-icon-img {
        width: 22px;
        height: 22px;
    }

    .aspr-about-pattern {
        top: 60px;
        opacity: 0.14;
    }

    .aspr-about-card-metric-value {
        font-size: clamp(32px, 10vw, 42px);
        margin-bottom: 6px;
    }

    .aspr-about-card-metric-label {
        font-size: clamp(14px, 3.5vw, 17px);
        line-height: 1.35;
    }

    .aspr-products {
        padding: 36px 0 44px;
        margin-left: 16px;
        margin-right: 16px;
        border-radius: 20px 20px 16px 16px;
    }

    .aspr-products-header {
        margin-bottom: 20px;
    }

    .aspr-products-title {
        font-size: clamp(28px, 8vw, 42px);
    }

    .aspr-products-carousel-wrap {
        gap: 8px;
    }

    .aspr-products-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .aspr-products-arrow-icon,
    .aspr-products-arrow-icon-img {
        width: 16px;
        height: 16px;
    }
    .aspr-products-arrow-icon { font-size: 16px; }

    .aspr-products-carousel {
        gap: 10px;
        padding: 6px 0;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .aspr-products .aspr-products-carousel {
        flex: 1 1 auto;
        width: 100%;
        max-width: none;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
    }

    .aspr-product-card {
        min-height: 372px;
        max-height: none;
        padding: 14px;
        border-radius: 14px;
    }

    .aspr-products .aspr-products-carousel .aspr-product-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .aspr-product-card-img {
        height: 144px;
        margin-bottom: 10px;
        padding: 6px;
    }

    .aspr-product-card--last .aspr-product-card-img {
        height: 144px;
    }

    .aspr-product-card-title {
        font-size: 15px;
        min-height: 44px;
        margin-bottom: 6px;
    }

    .aspr-product-card-desc {
        font-size: 12px;
        line-height: 1.48;
        min-height: 0;
        flex: 0 1 auto;
        margin-bottom: 0;
    }

    /* Read More: compact on small phones but slightly larger tap target / text */
    .aspr-product-read-more {
        margin-top: auto;
        padding: 9px 15px 9px 18px;
        font-size: 12px;
        gap: 7px;
    }

    .aspr-product-read-more-icon-wrap {
        width: 26px;
        height: 26px;
    }

    .aspr-product-read-more-icon {
        width: 11px;
        height: 11px;
    }

    /* Global Contact Us: slightly smaller on small screens, comfortable tap target */
    .aspr-contact-btn--global {
        padding: 10px 14px 10px 18px;
        font-size: 12px;
        gap: 8px;
    }

    .aspr-contact-btn--global .aspr-contact-btn-icon--circle {
        width: 26px;
        height: 26px;
    }

    .aspr-contact-btn--global .aspr-contact-btn-icon-image {
        width: 11px;
        height: 11px;
    }

    .aspr-footer-cta {
        margin-left: 16px;
        margin-right: 16px;
        padding: 40px 0 52px;
        border-radius: 20px 20px 16px 16px;
    }

    .aspr-footer-cta-title {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .aspr-footer-cta-text {
        font-size: 13px;
    }

    .aspr-footer-cta .aspr-contact-btn,
    .aspr-footer-cta .aspr-btn.aspr-contact-btn {
        padding: 10px 14px 10px 18px;
        font-size: 12px;
    }
    .aspr-footer-cta .aspr-contact-btn .aspr-contact-btn-icon--circle {
        width: 26px;
        height: 26px;
    }
    .aspr-footer-cta .aspr-contact-btn .aspr-contact-btn-icon-image {
        width: 11px;
        height: 11px;
    }

    .aspr-about-pill--cta {
        font-size: 12px;
        padding: 6px 12px;
    }

    .site-footer.aspr-footer {
        margin-left: 16px;
        margin-right: 16px;
        margin-top: 2px;
        margin-bottom: 32px;
        border-radius: 20px 20px 16px 16px;
        padding-top: 48px;
    }

    .aspr-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 48px;
    }

    .aspr-footer-col {
        text-align: center;
    }

    .aspr-footer-col--logo {
        justify-content: center;
    }

    .aspr-footer-heading {
        margin-bottom: 18px;
    }

    .aspr-footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .aspr-footer-bottom {
        padding: 16px 0;
        border-radius: 0 0 16px 16px;
    }

    .aspr-footer-bottom-inner {
        gap: 14px;
    }

    .aspr-footer-copy,
    .aspr-footer-credit {
        font-size: 12px;
        text-align: center;
    }

    ss3-loader,
    ss3-loader:after {
        display: none !important;
    }

    .aspr-footer-social-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .aspr-footer-social-link img,
    .aspr-footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    .aspr-global-roadmap-title {
        font-size: 18px;
    }

    .aspr-innovation-title {
        font-size: clamp(24px, 6vw, 30px);
    }
}

/* --------- Inner pages (index, page template) --------- */
.section {
    padding: 40px 0;
}

.container {
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 24px;
}

.section .container {
    padding-left: 24px;
    padding-right: 24px;
}

.content {
    max-width: 100%;
    word-wrap: break-word;
}

.content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .section {
        padding: 32px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 24px 0;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section h1 {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* ===== Blue theme restore (safe overrides) ===== */
:root {
    --aspr-gray-bg: #f9f7f2;
    --aspr-blue: #003366;
    --aspr-blue-dark: #0a4282;
    --aspr-footer-bottom: #053366;
}

body,
.aspr-header,
.aspr-hero-right,
.aspr-inner {
    background: #f9f7f2;
}

.aspr-hero-left {
    background : #0a4282;
}

.aspr-pill {
    background: #01366a;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.aspr-inner-hero-bg {
    background: #0a4282;
}

.site-footer.aspr-footer {
    background: #0a4282;
    color: #ffffff;
}

.aspr-footer-bottom {
    background: #053366;
}

.aspr-contact-map {
    background: #0a4282;
}

.aspr-product-card:hover,
.aspr-product-card--active {
    border-color: #003366;
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.18);
}

.aspr-contact-btn-icon {
    background: #003d79;
}

.aspr-contact-btn--global .aspr-contact-btn-icon--circle {
    background: #003d79;
}

.aspr-contact-btn--global .aspr-contact-btn-icon-image {
    filter: brightness(0) invert(1);
}

/* ===== Inner pages blue restore (About, Products, Product details, Contact) ===== */
.aspr-inner {
    background: #f9f7f2;
    padding-top: 24px;
    padding-bottom: 48px;
}

.aspr-inner-hero {
    position: relative;
    overflow: hidden;
    margin-left: 32px;
    margin-right: 32px;
    border-radius: 24px;
    min-height: 250px;
    display: flex;
    align-items: center;
}

/* Inner-page banners (About/Products/Product details/Contact/Blog): desktop size & typography */
@media (min-width: 901px) {
    .aspr-inner-hero {
        min-height: 270px;
    }

    .aspr-inner-hero-content {
        padding: 64px 0;
    }

    .aspr-inner-hero-title {
        font-size: clamp(34px, 4vw, 52px) !important;
        margin-bottom: 6px;
    }

    .aspr-inner-breadcrumb {
        font-size: 24px;
    }
}

.aspr-inner-hero-bg {
    position: absolute;
    inset: 0;
    background: #0a4282;
    z-index: 0;
}

.aspr-inner-hero-pattern {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}

.aspr-inner-hero-inner { position: relative; z-index: 2; width: 100%; }
.aspr-inner-hero-content { padding: 48px 0; text-align: center; }
.aspr-inner-hero-title { color: #fff; font-size: clamp(28px, 2.9vw, 40px); margin: 0 0 10px; line-height: 1.14; letter-spacing: -0.01em; font-weight: 600; }
.aspr-inner-breadcrumb { color: #a0b1c5; font-size: 17px; line-height: 1.14; letter-spacing: -0.01em; font-weight: 400; }
.aspr-inner-breadcrumb a { color: #a0b1c5; text-decoration: none; line-height: 1.14; letter-spacing: -0.01em; }
.aspr-inner-breadcrumb a:hover { color: rgba(255, 255, 255, 0.95); text-decoration: none; }
.aspr-inner-breadcrumb-sep { color: #a0b1c5; }
.aspr-inner-breadcrumb span:last-child { color: #d6dfeb; font-weight: 400; }

/* About page */
.aspr-inner-section { padding: 34px 0; }
.aspr-about-inner { background: #fdf5ef; }
.aspr-about-inner .aspr-container { max-width: 1510px; }
.aspr-about-inner-card { background: transparent; border-radius: 0; box-shadow: none; padding: 24px 0 0; border: none; max-width: 1510px; margin: 0 auto; }
.aspr-about-inner-left,
.aspr-about-inner-right { background: transparent; }
.aspr-about-inner-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr); gap: 48px; align-items: start; justify-content: space-between; }
.aspr-about-inner-left { max-width: none; width: 100%; justify-self: start; margin-left: 0; }
.aspr-about-inner-right { max-width: none; width: 100%; justify-self: end; align-self: start; }
.aspr-about-inner-pill { display: inline-block; border: 1px dashed #003366; color: #003366; border-radius: 999px; padding: 8px 18px; margin-bottom: 18px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.08; }
.aspr-about-inner-title { color: #151515; margin: 0 0 18px; font-size: clamp(26px, 2vw, 36px); line-height: 1.14; letter-spacing: -0.01em; font-weight: 600; }
.aspr-about-inner-text { color: #222; font-size: 19px; line-height: 1.72; margin: 0 0 22px; max-width: none; font-weight: 400; }
.aspr-about-inner-text-line { display: block; }
.aspr-about-inner-text--lead {
    /* Match the same typography as other paragraphs */
    line-height: 1.72;
    margin: 0 0 22px;
}

.aspr-about-inner-text--lead .aspr-about-inner-text-line {
    /* Keep each forced line on one visual line (no extra wrap). */
    white-space: nowrap;
}

/* For other forced 5-line paragraphs (word-end safe). */
.aspr-about-inner-text--forced {
    line-height: 1.72;
    margin: 0 0 22px;
}

.aspr-about-inner-text--forced .aspr-about-inner-text-line {
    white-space: nowrap;
}

/* Give the bottom paragraph a bit more breathing space */
.aspr-about-inner-text--bottom {
    margin-bottom: 34px;
}

@media (max-width: 1200px) {
    .aspr-about-inner-text--lead { font-size: 18px; }
    .aspr-about-inner-text--forced { font-size: 18px; }
    .aspr-about-inner-text--bottom { margin-bottom: 30px; }
}

@media (max-width: 600px) {
    .aspr-about-inner-text--lead {
        font-size: 17px;
        line-height: 1.55;
    }

    .aspr-about-inner-text--forced {
        font-size: 17px;
        line-height: 1.55;
    }

    .aspr-about-inner-text--bottom { margin-bottom: 26px; }
}
.aspr-about-inner-image-wrap { border-radius: 24px; overflow: hidden; background: #e5e7eb; width: 100%; aspect-ratio: auto; min-height: 0; }
.aspr-about-inner-image { width: 100%; height: auto; display: block; object-fit: contain; object-position: center center; aspect-ratio: auto; }

@media (min-width: 1201px) {
    /* Desktop lock: keep the first About block stable and symmetric */
    .aspr-about-inner-grid {
        /*
         * Keep text line positions stable (forced lines in spans are `nowrap`),
         * but add visual breathing room between left text and right image.
         *
         * Container inner width = 1312px (1360 - 2*24 padding)
         * Choose: left=661px, gap=64px => right=587px.
         */
        grid-template-columns: 720px 660px;
        gap: 64px;
        align-items: center;
        justify-content: space-between;
    }

    .aspr-about-inner-left {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    .aspr-about-inner-right {
        width: 100%;
        max-width: none;
        align-self: center;
    }

    .aspr-about-inner-image-wrap {
        width: 100%;
        aspect-ratio: auto;
        /* Fixed height so the image reliably fills the box (no layout stretching). */
        height: 660px;
        min-height: 660px;
    }

    .aspr-about-inner-image {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
    }
}

/* About company overview: keep image content vertically centered */
@media (min-width: 1201px) {
    .aspr-about-inner-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/*
 * Products listing (= .aspr-products-page): DO NOT restyle the section here — use the same
 * .aspr-products rules as home (padding, margins, radius, tablet/mobile breakpoints).
 */

/* Desktop only (901px+): multi-row bands of 4. Must NOT overlap max-width:900px carousel — that caused one long horizontal row on tablets. */
@media (min-width: 901px) {
    /* Listing: show every row of the grid (home section uses overflow hidden for its rounded box + carousel) */
    .aspr-products.aspr-products-page {
        overflow: visible;
    }

    .aspr-products-page .aspr-products-carousel-wrap {
        display: block;
        position: relative;
        width: 100%;
        max-width: calc((340px * 4) + (24px * 3));
        margin: 0 auto;
        padding: 0;
        overflow-x: visible;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    /* Second+ band (each band = up to 4 products, own mobile carousel / desktop row) */
    .aspr-products-page .aspr-products-page-band + .aspr-products-page-band {
        margin-top: 32px;
    }

    .aspr-products-page .aspr-products-arrow {
        display: none !important;
    }

    /* One band = same footprint as home Our Products strip: four 340px tracks (see .aspr-product-card base) */
    .aspr-products.aspr-products-page .aspr-products-carousel.aspr-products-page-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 340px);
        grid-auto-flow: row;
        justify-content: start;
        align-items: start;
        column-gap: 24px;
        row-gap: 0;
        width: calc((340px * 4) + (24px * 3));
        max-width: calc((340px * 4) + (24px * 3));
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        min-height: 0;
        max-height: none;
        height: auto;
        overflow-x: visible;
        overflow-y: visible !important;
        padding: 8px 0;
        flex: none;
        scroll-snap-type: none !important;
        scroll-padding-left: 0;
        scroll-padding-right: 0;
        box-sizing: border-box;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }

    /* Do not shrink cards vs home: fixed 340px + base min/max-height 560px stay in effect */
    .aspr-products.aspr-products-page .aspr-products-page-grid > .aspr-product-card {
        justify-self: stretch;
        width: 340px;
        min-width: 340px;
        max-width: 340px;
        flex: 0 0 340px;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Products listing desktop: same as home — Read More on card hover / --active (touch). Mobile: see ≤900px block. */

@media (min-width: 1201px) {
    /* Match home: band width = four cards + gaps (no side arrows on listing) */
    .aspr-products-page .aspr-products-carousel-wrap.aspr-products-page-band {
        max-width: calc((340px * 4) + (24px * 3));
        margin-left: auto;
        margin-right: auto;
    }

    .aspr-products.aspr-products-page .aspr-products-carousel.aspr-products-page-grid {
        padding-left: 0;
        padding-right: 0;
        overflow-x: visible;
    }
}

/* Product details page */
.aspr-product-details { padding: 48px 0 56px; }
.aspr-product-details-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e8e4df;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 36px;
}

.aspr-product-gallery-stage { border-radius: 16px; overflow: hidden; background: #f3f3f3; min-height: 360px; }
.aspr-product-gallery-image { width: 100%; height: 100%; object-fit: contain; display: none; }
.aspr-product-gallery-image.is-active { display: block; }
.aspr-product-gallery-arrow { width: 38px; height: 38px; border-radius: 50%; border: 0; background: #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.aspr-product-details-title { color: #111; }
.aspr-product-details-block-title { color: #003366; font-weight: 700; }
.aspr-product-details-list li::marker { color: #003366; }

/* Contact page */
.aspr-contact-info,
.aspr-contact-bottom { padding: 48px 0; }

.aspr-contact-info-title { color: #111; margin: 0 0 32px; text-align: center; font-size: clamp(34px, 3vw, 48px); line-height: 1.14; font-weight: 600; letter-spacing: -0.01em; }
.aspr-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
    align-items: stretch;
    max-width: 1330px;
    margin: 0 auto;
}
.aspr-contact-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: none;
    padding: 30px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 264px;
    height: 100%;
}

.aspr-contact-card-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: var(--aspr-orange); display: inline-flex; align-items: center; justify-content: center; }
.aspr-contact-card-label { color: #111; font-size: 18px; font-weight: 600; margin: 0 0 10px; line-height: 1.24; }
.aspr-contact-card-value { color: #222; font-size: 17px; font-weight: 400; line-height: 1.6; }

.aspr-contact-bottom-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; align-items: stretch; }
.aspr-contact-form-card {
    background: #fff;
    border: none;
    border-radius: 28px;
    box-shadow: none;
    padding: 54px 58px 58px;
    min-height: 520px;
}

.aspr-contact-form-title { color: #111; margin: 0 0 34px; text-align: center; font-size: clamp(34px, 3vw, 40px); font-weight: 600; line-height: 1.14; letter-spacing: -0.01em; }
.aspr-contact-form { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.aspr-contact-input,
.aspr-contact-textarea {
    border: 1px solid #989898;
    border-radius: 6px;
    padding: 15px 18px;
    font-size: 17px;
    color: #222;
    width: 100%;
    max-width: 504px;
    box-sizing: border-box;
    font-family: inherit;
}
.aspr-contact-input { height: 56px; }
.aspr-contact-textarea { min-height: 148px; resize: vertical; }
.aspr-contact-input::placeholder,
.aspr-contact-textarea::placeholder { color: #222; opacity: 1; }

.aspr-contact-recaptcha-wrap,
.aspr-contact-recaptcha-wrap--live { display: flex; justify-content: center; margin: 8px 0 12px; width: 100%; }
.aspr-contact-recaptcha-wrap--live .g-recaptcha { transform: scale(0.96); transform-origin: center; }
.aspr-contact-recaptcha { display: inline-flex; align-items: center; border: 1px solid #cfcfcf; border-radius: 4px; background: #f7f7f7; padding: 8px 10px; width: 268px; max-width: 100%; font-family: Roboto, sans-serif; font-size: 14px; color: #555; }
.aspr-contact-recaptcha__shell { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 10px; }
.aspr-contact-recaptcha__check { width: 22px; height: 22px; border: 2px solid #c1c1c1; border-radius: 2px; background: #fff; flex-shrink: 0; }
.aspr-contact-recaptcha__main { font-weight: 500; color: #333; font-size: 12px; margin-right: auto; }
.aspr-contact-recaptcha__brand { display: flex; align-items: center; gap: 5px; padding-left: 8px; border-left: 1px solid #e0e0e0; }
.aspr-contact-recaptcha__logo { display: inline-flex; }
.aspr-contact-recaptcha__logo svg { width: 18px; height: 18px; }
.aspr-contact-recaptcha__name { font-size: 10px; color: #555; }
.aspr-contact-recaptcha__links { font-size: 8px; color: #888; }

.aspr-contact-submit {
    display: inline-grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--aspr-orange);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 8px 8px 8px 24px;
    min-height: 48px;
    width: 182px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0;
}
.aspr-contact-submit-text {
    display: block;
    min-width: 96px;
    text-align: center;
    font-size: 13px;
    line-height: 1;
}
.aspr-contact-submit-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #003d79;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.aspr-contact-submit-icon-img { width: 12px; height: 12px; object-fit: contain; filter: brightness(0) invert(1); }

.aspr-contact-map { border-radius: 20px; overflow: hidden; background: #fff; border: none; min-height: 520px; }
.aspr-contact-map-iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; }

/* Our Members (About page) */
.aspr-about-team { background: #FAF3E8; padding: 60px 0 80px; }
.aspr-about-team-header { text-align: center; margin-bottom: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.aspr-about-team-header .aspr-pill--outline { border: 1px dashed #003366; color: #003366; background: transparent; padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.08; }
.aspr-about-team-title { color: #151515; font-size: clamp(26px, 2vw, 36px); margin: 0; line-height: 1.14; font-weight: 600; letter-spacing: -0.01em; }
.aspr-about-team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: start; max-width: 1510px; margin: 0 auto; }
.aspr-about-member-card { background: transparent; border: 0; border-radius: 0; padding: 0; text-align: left; }
.aspr-about-member-top { display: flex; align-items: center; gap: 28px; margin-bottom: 24px; }
.aspr-about-member-photo-wrap { width: 180px; height: 194px; min-width: 180px; border-radius: 22px; overflow: hidden; border: 2px solid #0a4282; background: #e5e7eb; flex-shrink: 0; }
.aspr-about-member-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.aspr-about-member-meta { min-width: 0; }
.aspr-about-member-name { font-size: clamp(22px, 1.7vw, 30px); font-weight: 600; color: #151515; margin: 0 0 10px; line-height: 1.14; letter-spacing: -0.01em; }
.aspr-about-member-role { font-size: clamp(17px, 1.42vw, 20px); color: #222; font-weight: 400; margin: 0; line-height: 1.52; }
.aspr-about-member-bio { padding: 0; }
.aspr-about-member-text { font-size: 17px; line-height: 1.74; color: #3b3b3b; margin: 0 0 22px; font-weight: 300; }
.aspr-about-member-text:last-child { margin-bottom: 0; }

/* Innovation & Research (About page) ? match screenshot: white card, blue header, 2-col with divider */
.aspr-about-innovation { padding: 44px 0; background: #faf6f1; }
.aspr-about-innovation-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 68px 52px 72px;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    max-width: 1510px;
    margin: 0 auto;
    border: 0 !important;
    outline: none !important;
    background-clip: padding-box;
}
.aspr-about-innovation-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 26px;
}
.aspr-about-innovation-icon-pill {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #0a4282;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.aspr-about-innovation-icon-pill .aspr-about-innovation-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.aspr-about-innovation-title {
    font-size: clamp(26px, 2vw, 36px);
    font-weight: 600;
    color: #151515;
    margin: 0;
    line-height: 1.14;
    letter-spacing: -0.01em;
    max-width: none;
}
.aspr-about-innovation-text {
    font-size: 19px;
    line-height: 1.78;
    color: #111;
    margin: 0 0 30px;
    max-width: none;
}
.aspr-about-innovation-text:last-of-type { margin-bottom: 0; }
.aspr-about-innovation-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px 52px;
    align-items: start;
    margin-top: 34px;
    margin-bottom: 34px;
}
.aspr-about-innovation-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
}
.aspr-about-innovation-point:last-child {
    border-left: 1px solid #e0e0e0;
    padding-left: 52px;
}
.aspr-about-innovation-point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--aspr-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.aspr-about-innovation-point-icon .aspr-about-innovation-point-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.aspr-about-innovation-point-text {
    font-size: 19px;
    line-height: 1.7;
    color: #111;
    margin: 0;
}

/* Force specific innovation point (ACF text) into 3 visual lines */
.aspr-about-innovation-point-text--three-lines .aspr-about-innovation-point-text-line {
    display: block;
    white-space: nowrap;
}

/* Force specific innovation point (ACF text) into 4 visual lines
 * but do NOT overflow the card: allow wrapping inside each forced line.
 */
.aspr-about-innovation-point-text--four-lines .aspr-about-innovation-point-text-line {
    display: block;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: clip;
}

.aspr-about-innovation-point-text--four-lines {
    overflow: hidden;
}

@media (max-width: 900px) {
    .aspr-about-innovation-card { padding: 36px 24px 40px; }
    .aspr-about-innovation-points { grid-template-columns: 1fr; gap: 24px 0; margin-top: 24px; margin-bottom: 24px; }
    .aspr-about-innovation-point:last-child { border-left: none; padding-left: 0; }
}

@media (max-width: 1200px) and (min-width: 901px) {
    .aspr-products.aspr-products-page .aspr-products-carousel.aspr-products-page-grid {
        grid-template-columns: repeat(4, 340px);
        column-gap: 20px;
        width: fit-content;
        max-width: 100%;
    }

    .aspr-products-page .aspr-products-page-band + .aspr-products-page-band {
        margin-top: 28px;
    }
}

@media (max-width: 900px) {
    .aspr-inner-hero {
        margin-left: 20px;
        margin-right: 20px;
    }
    .aspr-about-inner-grid,
    .aspr-product-details-card,
    .aspr-contact-bottom-grid {
        grid-template-columns: 1fr;
    }
    /* About page: Company Overview image should fill its box on mobile */
    .aspr-about-inner-image-wrap {
        width: 100%;
        height: auto;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .aspr-about-inner-image {
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }

    /* Prevent horizontal overflow on mobile (forced 5-line paragraphs should wrap). */
    .aspr-about-inner-text--lead .aspr-about-inner-text-line,
    .aspr-about-inner-text--forced .aspr-about-inner-text-line,
    .aspr-about-inner-text-line {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .aspr-about-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .aspr-products-page .aspr-products-page-band + .aspr-products-page-band {
        margin-top: 28px;
    }

    .aspr-contact-cards { grid-template-columns: 1fr; }
    .aspr-global-left { padding-left: 0; align-items: center; }
    .aspr-global-text { max-width: 100%; text-align: center; }
    .aspr-global-text-line { text-align: center; }
    .aspr-global-left .aspr-contact-btn { align-self: center; }
    .aspr-product-read-more { opacity: 0; visibility: hidden; pointer-events: none; }
    .aspr-product-card:hover .aspr-product-read-more,
    .aspr-product-card.aspr-product-card--active .aspr-product-read-more { opacity: 1; visibility: visible; pointer-events: auto; }

    .aspr-about-card-title { font-size: clamp(20px, 5.8vw, 26px); line-height: 1.14; }
    .aspr-products-title,
    .aspr-global .aspr-products-title,
    .aspr-innovation-title,
    .aspr-about-title,
    .aspr-about-inner-title,
    .aspr-about-innovation-title,
    .aspr-about-team-title {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.14;
    }
    .aspr-inner-hero-title { font-size: clamp(32px, 9vw, 46px); line-height: 1.14; }
    .aspr-inner-breadcrumb { font-size: 18px; }
}

/* Home page: headings (About / Innovation / Our Products / Global) - desktop only */
@media (min-width: 901px) {
    .aspr-about-title,
    .aspr-products-title,
    .aspr-innovation-title,
    .aspr-global .aspr-products-title,
    .aspr-global-roadmap-title {
        font-size: clamp(30px, 2.5vw, 44px);
        line-height: 1.08;
    }
}

/* Restore "Our Roadmap Includes" to its original size */
@media (min-width: 901px) {
    .aspr-global-roadmap-title {
        font-size: 21px;
        line-height: 1.06;
    }
}

/* About page headings: match home header sizing (desktop only) */
@media (min-width: 901px) {
    .aspr-about-inner-title,
    .aspr-about-team-title {
        font-size: clamp(30px, 2.4vw, 44px);
        line-height: 1.08;
        letter-spacing: -0.02em;
    }
}

/* Phones / touch: Read More only after card tap (--active), not sticky :hover */
@media (max-width: 900px) and (hover: none) {
    .aspr-product-card:hover .aspr-product-read-more {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .aspr-product-card.aspr-product-card--active .aspr-product-read-more {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 600px) {
    .aspr-inner-hero { margin-left: 16px; margin-right: 16px; min-height: 148px; border-radius: 16px; }
    .aspr-inner-hero-content { padding: 28px 0; }

    .aspr-about-team-grid { grid-template-columns: 1fr; }
    .aspr-product-details-card,
    .aspr-contact-form-card { padding: 18px 16px 20px; min-height: 260px; }
    .aspr-contact-form-title { margin-bottom: 24px; font-size: 28px; }
    .aspr-contact-input,
    .aspr-contact-textarea { max-width: 100%; }
    .aspr-contact-recaptcha-wrap--live .g-recaptcha { transform: scale(0.84); }
    .aspr-contact-recaptcha { width: 100%; max-width: 268px; }

    /* Smaller phones: slightly reduce image box height */
    .aspr-about-inner-image-wrap {
        height: auto;
        min-height: 0;
    }

    .aspr-about-inner-image {
        max-height: none;
    }

    .aspr-about-inner-text--lead .aspr-about-inner-text-line,
    .aspr-about-inner-text--forced .aspr-about-inner-text-line,
    .aspr-about-inner-text-line {
        white-space: normal;
    }
}

/* Product details page: screenshot-like */
.aspr-product-details-page .aspr-product-details {
    padding: 42px 0 56px;
}

.aspr-product-details-page .aspr-product-details-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 50px;
    align-items: start;
}

.aspr-product-details-page .aspr-product-gallery {
    position: relative;
}

.aspr-product-details-page .aspr-product-gallery-stage {
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #efe7de;
    min-height: 560px;
    padding: 32px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.aspr-product-details-page .aspr-product-gallery-image {
    position: absolute;
    inset: 0;
    width: clamp(200px, 60%, 340px);
    max-width: 100%;
    max-height: 85%;
    height: auto;
    object-fit: contain;
    margin: auto;
}

.aspr-product-details-page .aspr-product-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 2px solid #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #333;
    z-index: 3;
}

.aspr-product-details-page .aspr-product-gallery-arrow--prev { left: 20px; }
.aspr-product-details-page .aspr-product-gallery-arrow--next { right: 20px; }
.aspr-product-details-page .aspr-product-gallery-arrow:hover {
    border-color: var(--aspr-orange);
    box-shadow: 0 2px 12px rgba(245, 130, 31, 0.2);
}
.aspr-product-details-page .aspr-product-gallery-arrow .aspr-products-arrow-icon {
    font-size: 22px;
    line-height: 1;
    color: #333;
}

.aspr-product-details-page .aspr-product-gallery-dots {
    display: none;
}

.aspr-product-details-page .aspr-product-details-info {
    padding-top: 8px;
}

.aspr-product-details-page .aspr-product-details-brand {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #d6523e;
    margin-bottom: 8px;
}

.aspr-product-details-page .aspr-product-details-title {
    font-size: clamp(30px, 2.6vw, 48px);
    line-height: 1.14;
    color: #111;
    margin: 0 0 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.aspr-product-details-page .aspr-product-details-block {
    margin-bottom: 28px;
}

.aspr-product-details-page .aspr-product-details-block-title {
    color: #111;
    font-size: 19px;
    line-height: 1.14;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    letter-spacing: -0.01em;
}

.aspr-product-details-page .aspr-product-details-block-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 4px solid #ef7d1a;
    transform: translateY(-50%);
    box-sizing: border-box;
}

.aspr-product-details-page .aspr-product-details-block-text,
.aspr-product-details-page .aspr-product-details-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #2e2e2e;
}

.aspr-product-details-page .aspr-product-details-list {
    margin: 0;
    padding-left: 24px;
}

.aspr-product-details-page .aspr-product-details-list li {
    margin-bottom: 16px;
}

.aspr-product-details-page .aspr-product-details-list li::marker {
    color: #2e2e2e;
}

.aspr-product-details-page .aspr-product-gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: #d7d7d7;
    padding: 0;
}

.aspr-product-details-page .aspr-product-gallery-dot.is-active {
    background: #ef7d1a;
}

.aspr-product-details-page .aspr-product-details-cta-wrap {
    margin-top: 16px;
}

.aspr-product-details-page .aspr-product-details-cta {
    display: none;
}

.aspr-product-details-page .aspr-product-details-cta.aspr-contact-btn,
.aspr-product-details-page a.aspr-product-details-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--aspr-orange);
    color: #fff;
    padding: 12px 18px 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.aspr-product-details-page .aspr-product-details-cta .aspr-contact-btn-icon--circle {
    width: 30px;
    height: 30px;
    background: #003d79;
    margin-left: 0;
}

.aspr-product-details-page .aspr-product-details-cta .aspr-contact-btn-icon-image {
    width: 13px;
    height: 13px;
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .aspr-product-details-page .aspr-product-details-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .aspr-product-details-page .aspr-product-gallery-stage {
        min-height: 420px;
        padding: 24px;
    }
    .aspr-product-details-page .aspr-product-gallery-image {
        width: clamp(190px, 54vw, 280px);
    }
    .aspr-product-details-page .aspr-product-details-title {
        font-size: clamp(28px, 7.2vw, 42px);
        line-height: 1.12;
    }
    .aspr-product-details-page .aspr-product-details-block-title {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .aspr-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aspr-hero-slide-page {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 16px;
        margin-right: 16px;
    }

    .aspr-hero-unified {
        min-height: auto;
    }

    .aspr-hero-left,
    .aspr-hero-right {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .aspr-hero-left {
        min-height: 420px;
        padding: 32px 24px 56px;
        border-radius: 28px;
    }

    .aspr-hero-right {
        position: relative;
        min-height: 0;
        height: auto;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 28px;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider {
        display: none !important;
    }

    .aspr-hero-unified--smart {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: auto;
    }

    .aspr-hero-unified--smart .aspr-hero-viewport {
        order: 1;
    }

    .aspr-hero-unified--smart .aspr-hero-right {
        order: 2;
        aspect-ratio: auto;
        height: 420px;
        min-height: 420px;
    }

    .aspr-hero--full-smartslider .aspr-hero-ss-full.aspr-hero-smart-slider {
        aspect-ratio: auto;
        height: 420px;
        min-height: 420px;
        border-radius: 28px;
        overflow: hidden;
    }

    .aspr-hero-mobile-gallery {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        border-radius: inherit;
        overflow: hidden;
        background: #eef2f6;
    }

    .aspr-hero-mobile-gallery .aspr-hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        border-radius: inherit;
        object-fit: cover;
        object-position: center center;
    }

    .aspr-hero-slider-controls {
        display: flex !important;
        position: absolute;
        right: 14px;
        bottom: 14px;
        gap: 12px;
        z-index: 8;
    }

    .aspr-hero-slider-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 24px rgba(18, 60, 116, 0.12);
    }

    .aspr-hero-icon--slide {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .aspr-hero-indicator-wrap {
        display: none;
    }
}

@media (max-width: 600px) {
    .aspr-hero-left {
        min-height: 360px;
        padding: 24px 16px 48px;
    }

    .aspr-hero-right {
        border-radius: 24px;
    }

    .aspr-hero-slider-controls {
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .aspr-hero-slider-btn {
        width: 40px;
        height: 40px;
    }

    .aspr-hero-icon--slide {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 900px) {
    .aspr-hero-right {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 1 / 1 !important;
        overflow: hidden !important;
        border-radius: 28px !important;
        background: #eef2f6 !important;
    }

    .aspr-hero-unified--smart .aspr-hero-right {
        aspect-ratio: auto !important;
        min-height: 420px !important;
        height: 420px !important;
    }

    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider,
    .aspr-hero-unified:not(.aspr-hero-unified--smart) .aspr-hero-smart-slider * {
        display: none !important;
    }

    .aspr-hero-mobile-gallery {
        display: block !important;
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        background: #eef2f6 !important;
        border-radius: inherit !important;
        overflow: hidden !important;
    }

    .aspr-hero-mobile-gallery .aspr-hero-image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center 38% !important;
        background: #eef2f6 !important;
        border-radius: inherit !important;
    }

    .aspr-hero-slider-controls {
        display: flex !important;
        position: absolute !important;
        right: 14px !important;
        bottom: 14px !important;
        gap: 12px !important;
        z-index: 10 !important;
    }

    .aspr-hero-slider-btn {
        width: 42px !important;
        height: 42px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.96) !important;
        box-shadow: 0 10px 24px rgba(18, 60, 116, 0.12) !important;
    }
}

@media (max-width: 600px) {
    .aspr-hero-right {
        border-radius: 24px !important;
    }

    .aspr-hero-slider-controls {
        right: 12px !important;
        bottom: 12px !important;
        gap: 10px !important;
    }

    .aspr-hero-slider-btn {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 900px) {
    .aspr-hero-right {
        position: relative !important;
        min-height: 420px !important;
        height: 420px !important;
        aspect-ratio: auto !important;
        overflow: hidden !important;
        border-radius: 28px !important;
        background: #eef2f6 !important;
    }

    .aspr-hero-smart-slider,
    .aspr-hero-smart-slider .n2-section-smartslider,
    .aspr-hero-smart-slider .n2-ss-align,
    .aspr-hero-smart-slider .n2-ss-slide-limiter,
    .aspr-hero-smart-slider .n2-ss-slider-wrapper-inside,
    .aspr-hero-smart-slider .n2-ss-slider-wrapper-outside,
    .aspr-hero-smart-slider .n2-ss-slider,
    .aspr-hero-smart-slider .n2-ss-slider-frame,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-1,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-2,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-3,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-4,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-backgrounds,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 420px !important;
    }

    .aspr-hero-smart-slider {
        min-height: 420px !important;
        border-radius: inherit !important;
        overflow: hidden !important;
    }

    .aspr-hero-smart-slider .n2-ss-slide-limiter {
        max-width: none !important;
        margin: 0 !important;
    }

    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image img {
        object-fit: cover !important;
        object-position: center center !important;
    }

    .aspr-hero-mobile-gallery {
        display: none !important;
    }

    .aspr-hero-slider-controls {
        display: flex !important;
        position: absolute !important;
        right: 14px !important;
        bottom: 14px !important;
        gap: 12px !important;
        z-index: 20 !important;
    }

    .aspr-hero-smart-slider ss3-loader,
    .aspr-hero-smart-slider ss3-loader:before,
    .aspr-hero-smart-slider ss3-loader:after,
    .aspr-hero-smart-slider .n2-ss-loading-spinner,
    .aspr-hero-smart-slider .n2-ss-loading-spinner:before,
    .aspr-hero-smart-slider .n2-ss-loading-spinner:after,
    .aspr-hero-smart-slider [class*="loader"] {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .aspr-hero-indicator-wrap {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .aspr-hero-right {
        min-height: 360px !important;
        height: 360px !important;
        border-radius: 24px !important;
    }

    .aspr-hero--full-smartslider .aspr-hero-ss-full.aspr-hero-smart-slider {
        min-height: 360px !important;
        height: 360px !important;
        border-radius: 24px !important;
    }

    .aspr-hero-smart-slider,
    .aspr-hero-smart-slider .n2-section-smartslider,
    .aspr-hero-smart-slider .n2-ss-align,
    .aspr-hero-smart-slider .n2-ss-slide-limiter,
    .aspr-hero-smart-slider .n2-ss-slider-wrapper-inside,
    .aspr-hero-smart-slider .n2-ss-slider-wrapper-outside,
    .aspr-hero-smart-slider .n2-ss-slider,
    .aspr-hero-smart-slider .n2-ss-slider-frame,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-1,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-2,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-3,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slider-4,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-backgrounds,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image,
    .aspr-hero-smart-slider .n2-ss-slider .n2-ss-slide-background-image img {
        min-height: 360px !important;
    }

    .aspr-hero-slider-controls {
        right: 12px !important;
        bottom: 12px !important;
        gap: 10px !important;
    }

    .aspr-hero-slider-btn {
        width: 40px !important;
        height: 40px !important;
    }
}
.blog1 .blog-list{margin-bottom: 30px;}
.blog1 .blog-list .blog-img{margin-bottom: 30px}
.blog1 .blog-list .blog-img img{width: 100%;}
.blog1 .blog-list .blog-text h1{margin: 0 0 30px; padding-bottom: 10px; position: relative; text-transform: uppercase; color: #333333}
.blog1 .blog-list .blog-text h1 a{color: #333333}
.blog1 .blog-list .blog-text h1:after{width: 30px; height: 3px; background-color: #2684e4; content: ''; position: absolute; left: 0; right: auto; bottom: -10px; margin: 0 auto;}
.blog1 .blog-list .blog-text a{color: #2684e4}
.blog1 .blog-list .panel {padding: 5px 10px; border: 1px solid #eeeeee;}
.blog1 .blog-list .author, .blog1 .blog-list .date, .blog1 .blog-list .comments {display: block; float: left; font-size: 14px; color: #5c6873; font-weight: 400; margin: 6px 10px 3px 0;}
.blog1 .blog-list .tags {padding: 0; margin: 3px 0px 5px 0; float: right; display: block;}
.blog1 .blog-list .tags > li {font-size: 13px; text-transform: uppercase; display: inline-block; list-style: none; padding: 2px 6px 1px 6px;  margin: 0; color: #ffffff; background: #2684e4;}
.blog1 .blog-list .comments{float: right}

.blog1 .side-bar .search{width: 100%; border: 1px solid #2684e4; border-radius: 0; margin-bottom: 30px;}
.blog1 .side-bar .search input{border: none; box-shadow: none; background: #FFFFFF; float: left;}
.blog1 .side-bar .search .search-btn{background: #2684e4; color: #FFFFFF; border-radius: 0; float: right;}

.blog1 .side-bar h3{margin: 0 0 30px; padding-bottom: 10px; position: relative; text-transform: uppercase;}
.blog1 .side-bar h3:after{width: 30px; height: 3px; background-color: #2684e4; content: ''; position: absolute; left: 0; right: auto; bottom: -10px; margin: 0 auto;}

.blog1 .side-bar .category{margin-bottom: 30px;}
.blog1 .side-bar .category ul li{list-style: none; padding: 7px 0; border-bottom: 1px solid #f2f2f2;}
.blog1 .side-bar .category ul li::before {color: #2684e4; content: "\eab8"; font-family: IcoFont !important; font-weight: 100; width: 12px; height: 12px; font-size: 14px; float: left; margin: 2px 5px 0 0;}
.blog1 .side-bar .category ul li a:hover{color: #2684e4}

.blog1 .side-bar .posts{margin-bottom: 30px;}
.blog1 .side-bar .posts ul li{display: inline-block; width: 100%; margin-bottom: 10px; border: 1px solid #eeeeee; padding: 10px;}
.blog1 .side-bar .posts ul li:last-child{margin-bottom: 0}
.blog1 .side-bar .posts .posts-img{width: 60px; display: inline-block;}
.blog1 .side-bar .posts .posts-img img{width: 100%;}
.blog1 .side-bar .posts .posts-text{width: 70%}
.blog1 .side-bar .posts .posts-text .p-title{font-weight: 400; font-size: 17px;}
.blog1 .side-bar .posts .posts-text .p-date{font-size: 15px; color: #5c6873;}

.blog1 .side-bar .blogs{margin-bottom: 30px;}
.blog1 .side-bar .blogs ul li{list-style: none; padding: 7px 0; border-bottom: 1px solid #f2f2f2;}
.blog1 .side-bar .blogs ul li::before {color: #2684e4; content: "\eab8"; font-family: IcoFont !important; font-weight: 100; width: 12px; height: 12px; font-size: 14px; float: left; margin: 2px 5px 0 0;}
.blog1 .side-bar .blogs ul li a:hover{color: #2684e4}

.blog2 .blog-list{margin-bottom: 30px;}
.blog2 .blog-list .blog-img img{width: 100%;}
.blog2 .blog-list .blog-text{border: 1px solid #eeeeee; padding: 10px; margin-bottom: 20px;}
.blog2 .blog-list .blog-text h1{margin: 0 0 30px; padding-bottom: 10px; position: relative; text-transform: uppercase; color: #333333}
.blog2 .blog-list .blog-text h1 a{color: #333333}
.blog2 .blog-list .blog-text h1:after{width: 30px; height: 3px; background-color: #2684e4; content: ''; position: absolute; left: 0; right: auto; bottom: -10px; margin: 0 auto;}
.blog2 .blog-list .blog-text a{color: #2684e4}
.blog2 .blog-list .panel {padding: 5px 10px; border: 1px solid #eeeeee;}
.blog2 .blog-list .author, .blog2 .blog-list .date, .blog2 .blog-list .comments {display: block; float: left; font-size: 14px; color: #5c6873; font-weight: 400; margin: 6px 10px 3px 0;}
.blog2 .blog-list .tags {padding: 0; margin: 3px 0px 5px 0; float: right; display: block;}
.blog2 .blog-list .tags > li {font-size: 13px; text-transform: uppercase; display: inline-block; list-style: none; padding: 2px 6px 1px 6px;  margin: 0 2px; color: #ffffff; background: #2684e4;}
.blog2 .blog-list .comments{float: right}

.blog2 .side-bar .search{width: 100%; border: 1px solid #2684e4; border-radius: 0; margin-bottom: 30px;}
.blog2 .side-bar .search input{border: none; box-shadow: none; background: #FFFFFF; float: left;}
.blog2 .side-bar .search .search-btn{background: #2684e4; color: #FFFFFF; border-radius: 0; float: right;}

.blog2 .side-bar h3{margin: 0 0 30px; padding-bottom: 10px; position: relative; text-transform: uppercase;}
.blog2 .side-bar h3:after{width: 30px; height: 3px; background-color: #2684e4; content: ''; position: absolute; left: 0; right: auto; bottom: -10px; margin: 0 auto;}

.blog2 .side-bar .category{margin-bottom: 30px;}

/* ===== Blog Page (WordPress dynamic) ===== */
.aspr-blog-page {
    padding: 24px 0 0;
}

/* Force blog page to use the same theme font everywhere */
.aspr-blog-page,
.aspr-blog-page * {
    font-family: var(--aspr-font) !important;
}

/* Keep clear separation between blog banner and content grid */
.aspr-inner-hero--blog {
    margin-bottom: 30px;
}

.aspr-blog-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 220px;
    margin: 0 32px 28px;
    background: #123c74;
    display: flex;
    align-items: center;
}

.aspr-blog-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.aspr-blog-banner-title {
    position: relative;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    z-index: 2;
}

.aspr-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.aspr-blog-card {
    background: #fff;
    border-radius: 0;
    padding: 0;
    border: 0;
    margin-bottom: 30px;
}

/* Blog listing: title + excerpt on page background; only meta strip is white */
.aspr-blog-page .blog1 .blog-list.aspr-blog-card {
    background: transparent;
}

.aspr-blog-page .blog1 .blog-list .blog-text {
    background: transparent;
}

.aspr-blog-card .blog-img img {
    border-radius: 0;
    display: block;
}

.aspr-blog-card .blog-text h2 {
    margin: 0 0 30px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    color: #333;
    font-size: 37px;
    line-height: 1.15;
}

.aspr-blog-card .blog-text h2::after {
    width: 30px;
    height: 3px;
    background-color: #2684e4;
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
}

.aspr-blog-card .blog-text p {
    margin: 0;
    color: #4f5f72;
}

.aspr-blog-card-meta {
    margin-top: 20px;
}

/* Blog pagination: tight vertical rhythm (meta strip → footer) */
.aspr-blog-page .aspr-blog-main article.blog-list:last-of-type {
    margin-bottom: 0;
}

/* Pagination: separate buttons + equal padding above/below (unchanged) */
.aspr-blog-page .aspr-blog-main .aspr-blog-pagination {
    clear: both;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: clamp(40px, 5vw, 56px) 0 clamp(40px, 5vw, 56px);
    box-sizing: border-box;
}

.aspr-blog-page .aspr-blog-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.aspr-blog-page .aspr-blog-pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.page-numbers,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers span.page-numbers {
    box-sizing: border-box;
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid var(--aspr-blue-dark);
    border-radius: 12px;
    background: #fff;
    color: #333;
    font-family: var(--aspr-font);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.page-numbers:hover,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.page-numbers:focus-visible {
    background: var(--aspr-blue-dark);
    border-color: var(--aspr-blue-dark);
    color: #fff;
}

/* Active page (always the current number) */
.aspr-blog-page .aspr-blog-pagination ul.page-numbers span.page-numbers.current {
    background: var(--aspr-blue-dark);
    border-color: var(--aspr-blue-dark);
    color: #fff;
    cursor: default;
}

.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.prev,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.next,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.page-numbers.prev,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.page-numbers.next,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers span.page-numbers.prev,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers span.page-numbers.next {
    min-width: auto;
    padding: 10px 16px;
    background: #fff;
    border-color: var(--aspr-blue-dark);
}

.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.prev:hover,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.next:hover,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.page-numbers.prev:hover,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.page-numbers.next:hover,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.prev:focus-visible,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers a.next:focus-visible {
    background: var(--aspr-blue-dark);
    border-color: var(--aspr-blue-dark);
    color: #fff;
}

.aspr-blog-page .aspr-blog-pagination ul.page-numbers span.page-numbers.prev,
.aspr-blog-page .aspr-blog-pagination ul.page-numbers span.page-numbers.next {
    pointer-events: none;
    background: #fff;
    color: #5c6873;
    border-color: var(--aspr-blue-dark);
}

.aspr-blog-page .aspr-blog-pagination ul.page-numbers span.page-numbers.dots {
    min-width: auto;
    border: none;
    background: transparent;
    color: #5c6873;
    padding: 10px 6px;
    pointer-events: none;
}

.aspr-blog-page .blog1 .blog-list .blog-img {
    margin-bottom: 30px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.aspr-blog-page .blog1 .blog-list .blog-text a {
    color: #123c74;
}

.aspr-blog-page .blog1 .blog-list .panel.aspr-blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    padding: 14px 16px;
    margin-top: 20px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-sizing: border-box;
    clear: both;
}

.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
    column-gap: 10px;
    row-gap: 4px;
    flex: 1 1 220px;
    min-width: 0;
    text-align: left;
}

.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-dateline {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.28em;
}

.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-byline .author,
.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-byline .date {
    float: none;
    margin: 0;
    display: inline;
    font-size: 14px;
    font-weight: 400;
}

.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-byline .author {
    color: #222;
}

.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-byline .date {
    color: #5c6873;
}

.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-byline .author .aspr-blog-meta-author-name {
    color: inherit;
}

.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-on {
    font-size: 14px;
    color: #5c6873;
    font-weight: 400;
    text-transform: lowercase;
}

.aspr-blog-page .blog1 .blog-list .aspr-blog-meta-aside {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 14px;
    margin-left: auto;
    flex: 0 1 auto;
}

.aspr-blog-page .blog1 .blog-list .panel.aspr-blog-card-meta .tags {
    float: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.aspr-blog-page .blog1 .blog-list .panel.aspr-blog-card-meta .comments {
    float: none;
    margin: 0;
}

.aspr-blog-page .blog1 .blog-list .panel.aspr-blog-card-meta .comments a {
    font-size: 14px;
    color: #5c6873;
    white-space: nowrap;
}

.aspr-blog-page .blog1 .blog-list .author,
.aspr-blog-page .blog1 .blog-list .date,
.aspr-blog-page .blog1 .blog-list .comments {
    display: block;
    float: left;
    font-size: 14px;
    color: #5c6873;
    font-weight: 400;
    margin: 6px 10px 3px 0;
}

.aspr-blog-page .blog1 .blog-list .comments {
    float: right;
}

.aspr-blog-page .blog1 .blog-list .panel.aspr-blog-card-meta .aspr-blog-meta-byline .author,
.aspr-blog-page .blog1 .blog-list .panel.aspr-blog-card-meta .aspr-blog-meta-byline .date {
    float: none;
    display: inline;
    margin: 0;
}

.aspr-blog-page .blog1 .blog-list .tags {
    padding: 0;
    margin: 3px 0 5px;
    float: right;
    display: block;
}

.aspr-blog-page .blog1 .blog-list .tags > li {
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    list-style: none;
    padding: 4px 8px;
    margin: 0;
    border-radius: 0;
    color: #fff;
}

.aspr-blog-page .blog1 .side-bar .search {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-sizing: border-box;
    background: transparent;
}

.aspr-blog-page .blog1 .side-bar .search input {
    border: none;
    box-shadow: none;
    background: #fff;
    float: none;
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 0;
}

.aspr-blog-page .blog1 .side-bar .search .search-btn {
    background: var(--aspr-blue-dark);
    color: #fff;
    border-radius: 0;
    float: none;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0 14px;
    white-space: nowrap;
    font-weight: 600;
    cursor: pointer;
}

.aspr-blog-page .blog1 .side-bar h3 {
    margin: 0 0 30px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.aspr-blog-page .blog1 .side-bar h3::after {
    width: 30px;
    height: 3px;
    background-color: #123c74;
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
}

.aspr-blog-page .blog1 .side-bar .category,
.aspr-blog-page .blog1 .side-bar .posts,
.aspr-blog-page .blog1 .side-bar .blogs {
    margin-bottom: 30px;
}

.aspr-blog-page .blog1 .side-bar .category ul,
.aspr-blog-page .blog1 .side-bar .blogs ul {
    margin: 0;
    padding: 0;
}

/* Category + Blogs: same divider lines as SS (thin #eeeeee, full width under each row) */
.aspr-blog-page .blog1 .side-bar .category ul li,
.aspr-blog-page .blog1 .side-bar .blogs ul li {
    list-style: none;
    position: relative;
    padding: 10px 0;
    margin: 0;
    border-bottom: none;
    display: flow-root;
}

.aspr-blog-page .blog1 .side-bar .category ul li:not(:last-child)::after,
.aspr-blog-page .blog1 .side-bar .blogs ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #eeeeee;
}

.aspr-blog-page .blog1 .side-bar .category ul li::before,
.aspr-blog-page .blog1 .side-bar .blogs ul li::before {
    color: #2684e4;
    content: "\203A";
    width: 12px;
    height: 12px;
    font-size: 14px;
    font-weight: 100;
    float: left;
    margin: 2px 5px 0 0;
}

.aspr-blog-page .blog1 .side-bar .posts ul li {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    background: #fff;
    padding: 12px 12px;
    min-height: 84px;
    gap: 10px;
    align-items: center;
    box-sizing: border-box;
}

.aspr-blog-page .blog1 .side-bar .posts ul li:last-child {
    margin-bottom: 0;
}

.aspr-blog-page .blog1 .side-bar .posts .posts-img {
    width: 72px;
    flex: 0 0 72px;
    border-radius: 12px;
    overflow: hidden;
}

.aspr-blog-page .blog1 .side-bar .posts .posts-img img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 72px;
    object-fit: cover;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 12px;
}

.aspr-blog-page .blog1 .side-bar .posts .posts-text {
    width: auto;
    flex: 1 1 auto;
}

.aspr-blog-page .blog1 .side-bar .posts .posts-text {
    min-width: 0; /* allow ellipsis to work inside flex */
}

.aspr-blog-page .blog1 .side-bar .posts .posts-text .p-title {
    font-weight: 400;
    font-size: 17px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aspr-blog-page .blog1 .side-bar .posts .posts-text .p-date {
    font-size: 15px;
    color: #5c6873;
}

.aspr-blog-page .aspr-blog-card .blog-text h2::after {
    background-color: #123c74;
}

@media (max-width: 900px) {
    .aspr-blog-banner {
        margin: 0 20px 22px;
        min-height: 170px;
    }

    .aspr-blog-layout {
        grid-template-columns: 1fr;
    }
}
.blog2 .side-bar .category ul li{list-style: none; padding: 7px 0; border-bottom: 1px solid #f2f2f2;}
.blog2 .side-bar .category ul li::before {color: #2684e4; content: "\eab8"; font-family: IcoFont !important; font-weight: 100; width: 12px; height: 12px; font-size: 14px; float: left; margin: 2px 5px 0 0;}
.blog2 .side-bar .category ul li a:hover{color: #2684e4}

.blog2 .side-bar .posts{margin-bottom: 30px;}
.blog2 .side-bar .posts ul li{display: inline-block; width: 100%; margin-bottom: 10px; border: 1px solid #eeeeee; padding: 10px;}
.blog2 .side-bar .posts ul li:last-child{margin-bottom: 0}
.blog2 .side-bar .posts .posts-img{width: 60px; display: inline-block; margin-right: 10px;}
.blog2 .side-bar .posts .posts-img img{width: 100%;}
.blog2 .side-bar .posts .posts-text{width: 73%}
.blog2 .side-bar .posts .posts-text .p-title{font-weight: 400; font-size: 17px;}
.blog2 .side-bar .posts .posts-text .p-date{font-size: 15px; color: #5c6873;}

.blog2 .side-bar .blogs{margin-bottom: 30px;}
.blog2 .side-bar .blogs ul li{list-style: none; padding: 7px 0; border-bottom: 1px solid #f2f2f2;}
.blog2 .side-bar .blogs ul li::before {color: #2684e4; content: "\eab8"; font-family: IcoFont !important; font-weight: 100; width: 12px; height: 12px; font-size: 14px; float: left; margin: 2px 5px 0 0;}
.blog2 .side-bar .blogs ul li a:hover{color: #2684e4}

@media only screen and (min-width:1200px) and (max-width:1399px) {
.blog1 .side-bar .search input{width: 80%;}
.blog1 .side-bar .search .search-btn{width: 20%;}
.blog1 .side-bar .posts .posts-text {width: 68%;}

.blog2 .side-bar .search input{width: 80%;}
.blog2 .side-bar .search .search-btn{width: 20%;}
}

/** 5.0 - 1200 - Desktop **/
@media only screen and (min-width:992px) and (max-width:1199px) {
.blog1 .side-bar .search input{width: 80%;}
.blog1 .side-bar .search .search-btn{width: 20%;}
.blog1 .side-bar .posts .posts-text {width: 60%;}

.blog2 .side-bar .search input{width: 80%;}
.blog2 .side-bar .search .search-btn{width: 20%;}
.blog2 .side-bar .posts .posts-text {width: 60%;}
}

/** 7.0 - 768 - iPad **/
@media only screen and (min-width: 768px) and (max-width: 991px) {
.blog1 .side-bar .search input{width: 80%;}
.blog1 .side-bar .search .search-btn{width: 20%;}
.blog1 .side-bar .posts .posts-text {width: 86%;}

.blog2 .blog-list{padding: 0}
.blog2 .side-bar .posts .posts-text{width: 86%;}
}

/** 8.0 - 640 - Mobile **/
@media only screen and (min-width: 640px) and (max-width: 767px) {
.blog1 .side-bar .search input{width: 80%;}
.blog1 .side-bar .search .search-btn{width: 20%;}
.blog1 .side-bar .posts .posts-text {width: 86%;}

.blog2 .blog-list{padding: 0}
.blog2 .side-bar .posts .posts-text{width: 86%;}
}

/** 9.0 - 480 - Mobile **/
@media only screen and (min-width: 480px) and (max-width: 639px) {
.blog1 .side-bar .search input{width: 80%;}
.blog1 .side-bar .search .search-btn{width: 20%;}
.blog1 .side-bar .posts .posts-text {width: 80%;}

.blog2 .blog-list{padding: 0}
.blog2 .side-bar .posts .posts-text{width: 80%;}
}

/** 10.0 - 320 - Mobile **/
@media only screen and (min-width: 320px) and (max-width: 479px) {
.blog1 .blog-list .author, .blog1 .blog-list .date, .blog1 .blog-list .comments, .blog1 .blog-list .tags{display: block; float: none}
.blog1 .side-bar .search input{width: 80%;}
.blog1 .side-bar .search .search-btn{width: 20%;}
.blog1 .side-bar .posts .posts-text {width: 70%;}

.blog2 .blog-list{padding: 0}
}

/* Final override: keep blog page exactly like provided blog-list CSS */
.aspr-blog-page .blog1 .blog-list{margin-bottom: 30px;}
.aspr-blog-page .blog1 .blog-list .blog-img{margin-bottom: 30px}
.aspr-blog-page .blog1 .blog-list .blog-img img{width: 100%;}
.aspr-blog-page .blog1 .blog-list .blog-text h1,
.aspr-blog-page .blog1 .blog-list .blog-text h2{margin: 0 0 30px; padding-bottom: 10px; position: relative; text-transform: uppercase; color: #333333}
.aspr-blog-page .blog1 .blog-list .blog-text h1 a,
.aspr-blog-page .blog1 .blog-list .blog-text h2 a{color: #333333}
.aspr-blog-page .blog1 .blog-list .blog-text h1:after,
.aspr-blog-page .blog1 .blog-list .blog-text h2:after{width: 30px; height: 3px; background-color: #2684e4; content: ''; position: absolute; left: 0; right: auto; bottom: -10px; margin: 0 auto;}
.aspr-blog-page .blog1 .blog-list .blog-text a{color: #2684e4}
.aspr-blog-page .blog1 .blog-list .author, .aspr-blog-page .blog1 .blog-list .date, .aspr-blog-page .blog1 .blog-list .comments {display: block; float: left; font-size: 14px; color: #5c6873; font-weight: 400; margin: 6px 10px 3px 0;}
.aspr-blog-page .blog1 .blog-list .comments{float: right}

.aspr-blog-page .blog1 .side-bar .search{width: 100%; border: 1px solid #d9d9d9; border-radius: 12px; margin-bottom: 30px; overflow: hidden; display: flex; background: transparent;}
.aspr-blog-page .blog1 .side-bar .search input{border: none; box-shadow: none; background: #FFFFFF; float: left; width: 80%; border-radius: 0;}
.aspr-blog-page .blog1 .side-bar .search .search-btn{background: var(--aspr-blue-dark); color: #fff; border-radius: 0; float: right; width: 20%; border-left: 1px solid rgba(255, 255, 255, 0.22); font-weight: 600;}

.aspr-blog-page .blog1 .side-bar h3{margin: 0 0 30px; padding-bottom: 10px; position: relative; text-transform: uppercase;}
.aspr-blog-page .blog1 .side-bar h3:after{width: 30px; height: 3px; background-color: #2684e4; content: ''; position: absolute; left: 0; right: auto; bottom: -10px; margin: 0 auto;}

.aspr-blog-page .blog1 .side-bar .category ul li a:hover{color: #2684e4}

.aspr-blog-page .blog1 .side-bar .posts{margin-bottom: 30px;}
.aspr-blog-page .blog1 .side-bar .posts ul li{display: flex; width: 100%; margin-bottom: 10px; border: 1px solid #eeeeee; border-radius: 12px; padding: 12px 12px; gap: 10px; align-items: center; background: #fff; box-sizing: border-box;}
.aspr-blog-page .blog1 .side-bar .posts ul li:last-child{margin-bottom: 0;}
.aspr-blog-page .blog1 .side-bar .posts .posts-img{width: 72px; flex: 0 0 72px; border-radius: 12px; overflow: hidden;}
.aspr-blog-page .blog1 .side-bar .posts .posts-img img{width: 100%; height: auto; max-height: 72px; object-fit: cover; display: block; border: none; outline: none; box-shadow: none; border-radius: 12px;}
.aspr-blog-page .blog1 .side-bar .posts .posts-text{width: auto; flex: 1 1 auto;}
.aspr-blog-page .blog1 .side-bar .posts .posts-text .p-title{font-weight: 400; font-size: 17px;}
.aspr-blog-page .blog1 .side-bar .posts .posts-text .p-date{font-size: 15px; color: #5c6873;}

.aspr-blog-page .blog1 .side-bar .blogs ul li a:hover{color: #2684e4}

/* Blog search: neutral border; dark blue border only on hover/focus (no fill on wrapper) */
.aspr-blog-page .blog1 .side-bar .search {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: transparent;
}

.aspr-blog-page .blog1 .side-bar .search input {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 0;
}

.aspr-blog-page .blog1 .side-bar .search .search-btn {
    width: auto;
    min-width: 64px;
    padding: 0 12px;
    background: var(--aspr-blue-dark);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
}

.aspr-blog-page .blog1 .blog-list .blog-img img {
    width: 100%;
    display: block;
    max-height: 430px;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
}

.aspr-blog-page .blog1 .blog-list .blog-text a,
.aspr-blog-page .blog1 .side-bar .category ul li a:hover,
.aspr-blog-page .blog1 .side-bar .blogs ul li a:hover {
    color: var(--aspr-blue-dark);
}

.aspr-blog-page .blog1 .blog-list .blog-text h1:after,
.aspr-blog-page .blog1 .blog-list .blog-text h2:after,
.aspr-blog-page .blog1 .side-bar h3:after {
    background-color: var(--aspr-orange);
}

.aspr-blog-page .blog1 .blog-list .tags > li {
    background: var(--aspr-orange);
    border: 1px solid var(--aspr-orange);
    border-radius: 0;
    padding: 4px 8px;
}

.aspr-blog-page .blog1 .side-bar .search {
    transition: border-color 0.15s ease-in-out;
}

.aspr-blog-page .blog1 .side-bar .search:hover,
.aspr-blog-page .blog1 .side-bar .search:focus-within {
    border-color: var(--aspr-blue-dark);
}

.aspr-blog-page .blog1 .side-bar .search input:focus {
    outline: none;
    box-shadow: none;
}

/* Recent post row border-radius matches thumbnail (12px) */
.aspr-blog-page .blog1 .side-bar .posts ul li {
    border: 1px solid #eeeeee;
    border-radius: 12px;
    background: #fff;
}

.aspr-blog-page .blog1 .side-bar .posts .posts-img {
    width: 72px;
    flex: 0 0 72px;
    border-radius: 12px;
    overflow: hidden;
}

.aspr-blog-page .blog1 .side-bar .posts .posts-img img {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 12px !important;
}

/* Non-logged-in comment form button: blue, not green */
.single-post .comment-respond .comment-reply-title {
    color: #123c74;
}

.single-post .comment-respond input[type="text"],
.single-post .comment-respond input[type="email"],
.single-post .comment-respond input[type="url"],
.single-post .comment-respond textarea {
    border: 1px solid #c8d6e8;
    border-radius: 6px;
    padding: 10px 12px;
    background: #fff;
}

.single-post .comment-respond input:focus,
.single-post .comment-respond textarea:focus {
    border-color: #1f5fa6;
    outline: none;
}

.single-post .comment-respond .form-submit .submit,
.single-post .comment-respond input[type="submit"] {
    background: #1f5fa6 !important;
    border: 1px solid #1f5fa6 !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
}

.single-post .comment-respond .form-submit .submit:hover,
.single-post .comment-respond input[type="submit"]:hover {
    background: #123c74 !important;
    border-color: #123c74 !important;
}

.aspr-single-post-page {
    padding: 30px 0 70px;
}

.aspr-single-post-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    padding: 24px;
}

.aspr-single-post-title {
    margin: 0 0 12px;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.12;
    color: #162536;
}

.aspr-single-post-meta {
    display: flex;
    gap: 14px;
    color: #5c6873;
    font-size: 14px;
    margin-bottom: 16px;
}

.aspr-single-post-thumb img {
    width: 100%;
    height: auto;
    /* Desktop read more (single post): prevent featured image becoming very tall */
    max-height: 550px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 18px;
}

.aspr-single-post-comments {
    margin-top: 22px;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    padding: 22px;
}

/* Single post readability + proper comment form layout */
.aspr-single-post-content {
    color: #223246;
    font-size: 17px;
    line-height: 1.75;
}

.aspr-single-post-content p {
    margin: 0 0 14px;
}

.aspr-single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.aspr-single-post-comments .comment-respond {
    margin-top: 0;
}

.single-post .comment-respond .comment-reply-title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.single-post .comment-respond .comment-notes {
    margin: 0 0 14px;
    color: #5c6873;
    font-size: 14px;
}

.single-post .comment-form {
    margin: 0;
}

.single-post .comment-form p {
    margin: 0 0 12px;
}

.single-post .comment-form label {
    display: block;
    margin: 0 0 6px;
    color: #223246;
    font-weight: 500;
    font-size: 14px;
}

.single-post .comment-respond textarea {
    width: 100%;
    min-height: 150px;
    resize: vertical;
}

.single-post .comment-respond input[type="text"],
.single-post .comment-respond input[type="email"],
.single-post .comment-respond input[type="url"] {
    width: 100%;
}

.single-post .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-post .comment-form-cookies-consent label {
    margin: 0;
    font-weight: 400;
}

.aspr-about-title{font-size: 40px; font-weight: 700; color: #000}


@media only screen and (min-width:1600px) and (max-width:1799px) {
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
.aspr-products.aspr-products-page .aspr-products-carousel.aspr-products-page-grid {grid-template-columns: repeat(4, 300px);}
.aspr-products.aspr-products-page .aspr-products-page-grid > .aspr-product-card{width: 300px; min-width: 300px; max-width: 300px;}
.aspr-products-page .aspr-products-carousel-wrap.aspr-products-page-band {max-width: calc((300px * 4) + (24px * 3));}

.aspr-products:not(.aspr-products-page) .aspr-products-arrow--prev {left: -18px;}
.aspr-products:not(.aspr-products-page) .aspr-products-arrow--next {right: -18px;}
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
.aspr-global-left{padding-left: 0; word-wrap: break-word; white-space: normal;}
.aspr-global-text-line{white-space: normal}
.aspr-global-roadmap-line{white-space: normal}
.aspr-footer-address-line{white-space: normal}
.aspr-products-carousel{max-width: calc((158px * 4) + (24px * 3) + 4px);}
.aspr-products:not(.aspr-products-page) .aspr-products-carousel{width: calc((332px * 3) + (24px * 3)); max-width: calc((332px * 3) + (24px * 3));}
.aspr-products:not(.aspr-products-page) .aspr-products-arrow--prev {left: 42px;}
.aspr-products:not(.aspr-products-page) .aspr-products-arrow--next{right: 42px;}

.aspr-products.aspr-products-page .aspr-products-carousel.aspr-products-page-grid {grid-template-columns: repeat(3, 340px);}
}

/** 5.0 - 1200 - Desktop **/
@media only screen and (min-width:992px) and (max-width:1199px) {
.aspr-footer-inner{display: flex; flex-wrap: wrap; gap: 2%;}
.aspr-footer-col{width: 48%;}
.aspr-global-grid{display: flex; flex-wrap: wrap; gap: 2%;}
.aspr-global-left, .aspr-global-center, .aspr-global-right{width: 32%;}
.aspr-global-text-line{white-space: break-spaces;}
.aspr-hero-left{padding: 48px 26px 48px 26px}
.aspr-hero-text-line{white-space: break-spaces;}
.aspr-nav-link{font-size: 15px;}
.aspr-header-main{padding: 0 24px;}
}

/** 7.0 - 768 - iPad **/
@media only screen and (min-width: 768px) and (max-width: 991px) {
.aspr-header .aspr-container {padding-left: 0; padding-right: 0;}
}

/** 8.0 - 640 - Mobile **/
@media only screen and (min-width: 640px) and (max-width: 767px) {
.aspr-header .aspr-container {padding-left: 0; padding-right: 0;}
}

/** 9.0 - 480 - Mobile **/
@media only screen and (min-width: 480px) and (max-width: 639px) {
.aspr-global-roadmap-line{white-space: break-spaces;}
.aspr-global-center{padding-right: 0}
.aspr-global-grid{display: block}
.aspr-global-text-line{white-space: break-spaces;}
.aspr-footer-contact li{display: block}
.aspr-footer-contact li{text-align: center}
.aspr-products-carousel-wrap {gap: 0;}

.aspr-header .aspr-container {padding-left: 0; padding-right: 0;}
}

/** 10.0 - 320 - Mobile **/
@media only screen and (min-width: 320px) and (max-width: 479px) {
.aspr-global-roadmap-line{white-space: break-spaces;}
.aspr-global-center{padding-right: 0}
.aspr-global-grid{display: block}
.aspr-global-text-line{white-space: break-spaces;}
.aspr-footer-contact li{display: block}
.aspr-footer-contact li{text-align: center}
.aspr-products-carousel-wrap {gap: 0;}

.aspr-header .aspr-container {padding-left: 0; padding-right: 0;}

.aspr-hero-text{max-width: 80%;}
.aspr-hero-text-line{white-space: initial;}

.aspr-products .aspr-container{padding: 0}
.aspr-products-carousel-wrap{padding: 0 48px}
}