/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ===== NAVBAR WRAPPER ===== */
.navbar-wrapper {
    background: #FFFFFF;
    border-bottom: 1px solid #E5EAED;
    box-shadow: 0 2px 6px rgba(53, 65, 74, 0.04);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* ===== CONTAINER ===== */
.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ===== LOGO ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 24px;
}

.logo-wrapper img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* ===== DESKTOP NAVIGATION ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-menu>li {
    position: relative;
    margin: 0 4px;
}

.nav-menu>li>a,
.nav-menu>li>.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #35414A;
    text-decoration: none;
    letter-spacing: 0.01em;
    border-radius: 0;
    transition: color 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
    white-space: nowrap;
}

.nav-menu>li>.nav-link.active {
    color: #22AEC7;
    position: relative;
}

.nav-menu>li>.nav-link.active::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    background: #22AEC7;
    border-radius: 1px;
}

.nav-menu>li>.nav-link:hover {
    color: #22AEC7;
}

.nav-link .dropdown-indicator {
    font-size: 11px;
    margin-left: 3px;
    transition: transform 0.2s ease;
    color: inherit;
}

.nav-link .dropdown-indicator i {
    font-size: 11px;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #FFFFFF;
    border: 1px solid #E5EAED;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(53, 65, 74, 0.08);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
    list-style: none;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    margin: 0;
}

.dropdown-menu li a,
.dropdown-menu li .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #35414A;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    line-height: 1.4;
    text-align: left;
}

.dropdown-menu li a:hover,
.dropdown-menu li .dropdown-item:hover {
    background: #F2FBFD;
    color: #22AEC7;
}

.nested-dropdown {
    position: absolute;
    top: -8px;
    left: calc(100% + 4px);
    background: #FFFFFF;
    border: 1px solid #E5EAED;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(53, 65, 74, 0.08);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 300;
    list-style: none;
}

.nested-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-dropdown li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #35414A;
    text-decoration: none;
    display: block;
    transition: background 0.15s, color 0.15s;
}

.nested-dropdown li a:hover {
    background: #F2FBFD;
    color: #22AEC7;
}

.dropdown-item .nested-chevron {
    margin-left: 16px;
    font-size: 11px;
    color: #7b8a96;
}

/* ===== MOBILE HAMBURGER - ANIMATED TO X ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    flex-shrink: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: #35414A;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger:hover span {
    background: #22AEC7;
}

/* Hamburger animation to X when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #22AEC7;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #22AEC7;
}

/* ===== MOBILE MENU - SLIDING FROM RIGHT ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FFFFFF;
    padding: 80px 24px 32px;
    box-shadow: -8px 0 30px rgba(53, 65, 74, 0.15);
    z-index: 999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid #E5EAED;
}

.mobile-menu.open {
    right: 0;
}

/* Overlay when menu is open */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu>ul>li {
    border-bottom: 1px solid #E5EAED;
}

.mobile-menu>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #35414A;
    text-decoration: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.15s;
}

.mobile-menu .mobile-nav-link:hover {
    color: #22AEC7;
}

.mobile-menu .mobile-nav-link .chevron-icon {
    font-size: 13px;
    color: #7b8a96;
    transition: transform 0.2s;
}

.mobile-menu .mobile-nav-link.active {
    color: #22AEC7;
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    display: none;
    overflow: hidden;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu .mobile-nav-link {
    padding: 10px 0 10px 8px;
    font-weight: 400;
    font-size: 15px;
    border-bottom: none;
}

.mobile-submenu .mobile-sub-submenu {
    list-style: none;
    padding-left: 24px;
    display: none;
}

.mobile-submenu .mobile-sub-submenu.open {
    display: block;
}

.mobile-submenu .mobile-sub-submenu li .mobile-nav-link {
    padding: 8px 0 8px 12px;
    font-weight: 400;
    font-size: 14px;
    color: #4a5a66;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ===== NAVBAR WRAPPER ===== */
.navbar-wrapper {
    background: #FFFFFF;
    border-bottom: 1px solid #E5EAED;
    box-shadow: 0 2px 6px rgba(53, 65, 74, 0.04);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* ===== CONTAINER ===== */
.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ===== LOGO ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 24px;
}

.logo-wrapper img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* ===== DESKTOP NAVIGATION ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-menu>li {
    position: relative;
    margin: 0 4px;
}

.nav-menu>li>a,
.nav-menu>li>.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #35414A;
    text-decoration: none;
    letter-spacing: 0.01em;
    border-radius: 0;
    transition: color 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
    white-space: nowrap;
}

.nav-menu>li>.nav-link.active {
    color: #22AEC7;
    position: relative;
}

.nav-menu>li>.nav-link.active::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    background: #22AEC7;
    border-radius: 1px;
}

.nav-menu>li>.nav-link:hover {
    color: #22AEC7;
}

.nav-link .dropdown-indicator {
    font-size: 11px;
    margin-left: 3px;
    transition: transform 0.2s ease;
    color: inherit;
}

.nav-link .dropdown-indicator i {
    font-size: 11px;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #FFFFFF;
    border: 1px solid #E5EAED;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(53, 65, 74, 0.08);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
    list-style: none;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    margin: 0;
}

.dropdown-menu li a,
.dropdown-menu li .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #35414A;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    line-height: 1.4;
    text-align: left;
}

.dropdown-menu li a:hover,
.dropdown-menu li .dropdown-item:hover {
    background: #F2FBFD;
    color: #22AEC7;
}

.nested-dropdown {
    position: absolute;
    top: -8px;
    left: calc(100% + 4px);
    background: #FFFFFF;
    border: 1px solid #E5EAED;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(53, 65, 74, 0.08);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 300;
    list-style: none;
}

.nested-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-dropdown li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #35414A;
    text-decoration: none;
    display: block;
    transition: background 0.15s, color 0.15s;
}

.nested-dropdown li a:hover {
    background: #F2FBFD;
    color: #22AEC7;
}

.dropdown-item .nested-chevron {
    margin-left: 16px;
    font-size: 11px;
    color: #7b8a96;
}

/* ===== MOBILE HAMBURGER - ANIMATED TO X ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    flex-shrink: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: #35414A;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger:hover span {
    background: #22AEC7;
}

/* Hamburger animation to X when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #22AEC7;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #22AEC7;
}

/* ===== MOBILE MENU - SLIDING FROM RIGHT ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FFFFFF;
    padding: 80px 24px 32px;
    box-shadow: -8px 0 30px rgba(53, 65, 74, 0.15);
    z-index: 999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid #E5EAED;
}

.mobile-menu.open {
    right: 0;
}

/* Overlay when menu is open */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu>ul>li {
    border-bottom: 1px solid #E5EAED;
}

.mobile-menu>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #35414A;
    text-decoration: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.15s;
}

.mobile-menu .mobile-nav-link:hover {
    color: #22AEC7;
}

.mobile-menu .mobile-nav-link .chevron-icon {
    font-size: 13px;
    color: #7b8a96;
    transition: transform 0.2s;
}

.mobile-menu .mobile-nav-link.active {
    color: #22AEC7;
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    display: none;
    overflow: hidden;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu .mobile-nav-link {
    padding: 10px 0 10px 8px;
    font-weight: 400;
    font-size: 15px;
    border-bottom: none;
}

.mobile-submenu .mobile-sub-submenu {
    list-style: none;
    padding-left: 24px;
    display: none;
}

.mobile-submenu .mobile-sub-submenu.open {
    display: block;
}

.mobile-submenu .mobile-sub-submenu li .mobile-nav-link {
    padding: 8px 0 8px 12px;
    font-weight: 400;
    font-size: 14px;
    color: #4a5a66;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: clamp(500px, 42vw, 620px);
    height: clamp(500px, 42vw, 620px);
    max-height: 680px;
    overflow: hidden;
    background: #1a242b;
    margin-top: 82px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    background-color: #1a242b;
}

/* ===== BACKGROUND IMAGES - DEFAULT ===== */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== SLIDE 1 - CUSTOM POSITIONING OVERRIDE ===== */
.hero-slide[data-slide="0"] .hero-bg {
    top: -49px !important;
    width: 102% !important;
    height: 117% !important;
}

/* Desktop background - KEPT EXACTLY AS ORIGINAL */
.hero-bg-desktop {
    display: block;
    background-size: contain !important;
    background-position: 85% center !important;
    background-repeat: no-repeat !important;
}

/* Mobile background - hidden by default */
.hero-bg-mobile {
    display: none;
}

/* ===== OVERLAY ===== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(15, 25, 32, 0.92) 0%,
            rgba(15, 25, 32, 0.78) 30%,
            rgba(15, 25, 32, 0.50) 55%,
            rgba(15, 25, 32, 0.20) 75%,
            rgba(15, 25, 32, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ===== CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-text {
    max-width: 560px;
    width: 100%;
    padding: 20px 0;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #22AEC7;
    margin-bottom: 12px;
    background: rgba(34, 174, 199, 0.10);
    padding: 4px 14px;
    border-radius: 3px;
}

.hero-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 800;
    line-height: 1.04;
    color: #FFFFFF;
    max-width: 550px;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.hero-title .teal-accent {
    color: #22AEC7;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 0 28px 0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 0 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease-out;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
}

.btn .arrow {
    display: inline-block;
    transition: transform 0.2s ease-out;
    font-size: 16px;
    line-height: 1;
}

.btn-primary {
    background: #22AEC7;
    color: #FFFFFF;
    border-color: #22AEC7;
}

.btn-primary:hover {
    background: #1a9bb3;
    border-color: #1a9bb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 174, 199, 0.30);
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.70);
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #35414A;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover .arrow {
    transform: translateX(4px);
}

/* ===== PROGRESS & INDICATORS ===== */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 3;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: #22AEC7;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

.hero-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.20);
    padding: 6px 16px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
    position: relative;
}

.hero-dot.active {
    background: #22AEC7;
    transform: scale(1.15);
}

.hero-dot:hover {
    background: #22AEC7;
    transform: scale(1.10);
}

.hero-dot:focus-visible,
.btn:focus-visible {
    outline: 2px solid #22AEC7;
    outline-offset: 2px;
}

/* ================================================================ */
/* ===== RESPONSIVE BREAKPOINTS ===== */
/* ================================================================ */

/* Tablet (1024px) */
@media screen and (max-width: 1024px) {
    .navbar-container {
        padding: 0 28px;
    }

    .nav-menu>li>a,
    .nav-menu>li>.nav-link {
        padding: 6px 8px;
        font-size: 13px;
    }

    .hero-text {
        max-width: 480px;
    }

    .hero-slide {
        background-position: 82% center;
        background-size: 60% auto;
    }

    .hero-title {
        font-size: clamp(38px, 3.8vw, 48px);
    }
}

/* Mobile - Show Hamburger (880px) */
@media screen and (max-width: 880px) {

    /* Hide desktop navigation */
    .nav-menu {
        display: none;
    }

    /* Show hamburger button */
    .hamburger {
        display: flex;
    }

    .navbar-container {
        height: 72px;
        padding: 0 20px;
    }

    .logo-wrapper img {
        height: 36px;
        max-width: 180px;
    }

    /* Hide desktop background */
    .hero-bg-desktop {
        display: none;
    }

    /* Show mobile background */
    .hero-bg-mobile {
        display: block;
    }

    .hero-section {
        margin-top: 72px;
        min-height: clamp(520px, 80vh, 700px);
        height: auto;
    }

    .hero-content {
        padding: 0 24px;
        align-items: center;
        padding-top: 10px;
    }

    .hero-text {
        max-width: 100%;
        padding: 25px 0 40px;
    }

    /* Mobile overlay - gradient from top to bottom for readability */
    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(15, 25, 32, 0.92) 0%,
                rgba(15, 25, 32, 0.85) 30%,
                rgba(15, 25, 32, 0.60) 55%,
                rgba(15, 25, 32, 0.30) 75%,
                rgba(15, 25, 32, 0.10) 100%);
    }

    .hero-eyebrow {
        font-size: 12px;
        padding: 3px 12px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(32px, 7vw, 44px);
        max-width: 100%;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        height: 48px;
        padding: 0 24px;
        font-size: 13px;
    }

    .hero-indicators {
        bottom: 18px;
        padding: 5px 14px;
        gap: 10px;
    }

    .hero-dot {
        width: 9px;
        height: 9px;
    }

    .hero-progress {
        height: 2px;
    }
}

/* Small Mobile (480px) */
@media screen and (max-width: 480px) {
    .navbar-container {
        padding: 0 16px;
        height: 68px;
    }

    .logo-wrapper img {
        height: 32px;
        max-width: 150px;
    }

    .mobile-menu {
        width: 300px;
        padding: 70px 20px 24px;
    }

    .mobile-menu .mobile-nav-link {
        font-size: 15px;
        padding: 12px 0;
    }

    .hero-section {
        margin-top: 68px;
        min-height: clamp(480px, 85vh, 650px);
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-text {
        padding: 15px 0 30px;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(15, 25, 32, 0.95) 0%,
                rgba(15, 25, 32, 0.90) 25%,
                rgba(15, 25, 32, 0.70) 50%,
                rgba(15, 25, 32, 0.40) 70%,
                rgba(15, 25, 32, 0.10) 100%);
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .btn {
        max-width: 100%;
        height: 46px;
        font-size: 12px;
        padding: 0 16px;
    }

    .hero-indicators {
        bottom: 14px;
        padding: 4px 12px;
        gap: 8px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-eyebrow {
        font-size: 11px;
        padding: 2px 10px;
    }
}

/* Extra Small (375px) */
@media screen and (max-width: 375px) {
    .logo-wrapper img {
        height: 28px;
        max-width: 130px;
    }

    .mobile-menu {
        width: 280px;
        padding: 65px 16px 20px;
    }

    .hero-section {
        min-height: clamp(450px, 85vh, 600px);
    }

    .hero-text {
        padding: 10px 0 25px;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(15, 25, 32, 0.97) 0%,
                rgba(15, 25, 32, 0.93) 20%,
                rgba(15, 25, 32, 0.75) 45%,
                rgba(15, 25, 32, 0.45) 65%,
                rgba(15, 25, 32, 0.10) 100%);
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.08;
    }

    .hero-description {
        font-size: 13px;
    }

    .btn {
        height: 44px;
        font-size: 11px;
        padding: 0 14px;
    }

    .hero-eyebrow {
        font-size: 10px;
        padding: 2px 8px;
        margin-bottom: 8px;
    }

    .hero-indicators {
        bottom: 12px;
        padding: 3px 10px;
        gap: 6px;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
    }
}

/* Very Small (320px) */
@media screen and (max-width: 320px) {
    .hero-section {
        min-height: clamp(420px, 85vh, 550px);
    }

    .hero-text {
        padding: 8px 0 20px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 12px;
    }

    .btn {
        height: 40px;
        font-size: 10px;
        padding: 0 12px;
    }

    .hero-eyebrow {
        font-size: 9px;
        padding: 2px 6px;
    }

    .hero-indicators {
        bottom: 10px;
        padding: 3px 8px;
        gap: 5px;
    }

    .hero-dot {
        width: 6px;
        height: 6px;
    }
}

/* ===== UTILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ================================================================ */
/* ===== FIX: REMOVE EXCESSIVE MOBILE HERO HEIGHT ===== */
/* ================================================================ */

/* Mobile - Remove forced heights and let content determine height */
@media screen and (max-width: 880px) {

    /* Override hero section height to auto */
    .hero-section {
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Override carousel height */
    .hero-carousel {
        height: auto !important;
        min-height: 0 !important;
    }

    /* Override track height */
    .hero-track {
        height: auto !important;
        min-height: 0 !important;
    }

    /* Override individual slide height */
    .hero-slide {
        height: auto !important;
        min-height: 0 !important;
        padding-bottom: 16px !important;
        position: relative;
    }

    /* Override content wrapper height */
    .hero-content {
        height: auto !important;
        min-height: 0 !important;
        padding: 20px 24px 10px 24px !important;
        align-items: flex-start !important;
    }

    /* Remove any extra bottom padding from hero text */
    .hero-text {
        padding: 10px 0 0 0 !important;
    }

    /* Ensure buttons have normal bottom margin */
    .hero-buttons {
        margin-bottom: 0 !important;
    }

    /* Reduce space after buttons */
    .hero-buttons .btn {
        margin-bottom: 0 !important;
    }

    /* Keep indicators with minimal spacing */
    .hero-indicators {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 16px !important;
        margin-bottom: 0 !important;
        padding: 5px 14px !important;
    }

    /* Remove progress bar extra space */
    .hero-progress {
        position: relative !important;
        margin-top: 0 !important;
        height: 2px !important;
    }

    /* Ensure overlay doesn't add height */
    .hero-overlay {
        position: absolute !important;
        height: 100% !important;
    }

    /* Background images should fill the content height */
    .hero-bg {
        height: 100% !important;
        position: absolute !important;
    }

    .hero-bg-mobile {
        height: 100% !important;
        position: absolute !important;
    }

    /* Remove any extra spacing after indicators */
    .hero-indicators:last-child {
        margin-bottom: 0 !important;
    }

    /* Ensure no extra space at bottom of hero */
    .hero-section::after {
        display: none !important;
    }
}

/* ===== SMALL MOBILE (480px) ===== */
@media screen and (max-width: 480px) {
    .hero-content {
        padding: 15px 20px 8px 20px !important;
    }

    .hero-text {
        padding: 5px 0 0 0 !important;
    }

    .hero-indicators {
        margin-top: 12px !important;
        padding: 4px 12px !important;
    }

    .hero-slide {
        padding-bottom: 12px !important;
    }
}

/* ===== EXTRA SMALL (375px) ===== */
@media screen and (max-width: 375px) {
    .hero-content {
        padding: 12px 16px 6px 16px !important;
    }

    .hero-text {
        padding: 5px 0 0 0 !important;
    }

    .hero-indicators {
        margin-top: 10px !important;
        padding: 3px 10px !important;
    }

    .hero-slide {
        padding-bottom: 10px !important;
    }

    .hero-buttons {
        gap: 8px !important;
    }
}

/* ===== VERY SMALL (320px) ===== */
@media screen and (max-width: 320px) {
    .hero-content {
        padding: 10px 14px 4px 14px !important;
    }

    .hero-text {
        padding: 5px 0 0 0 !important;
    }

    .hero-indicators {
        margin-top: 8px !important;
        padding: 3px 8px !important;
        gap: 5px !important;
    }

    .hero-slide {
        padding-bottom: 8px !important;
    }
}

@media screen and (max-width: 880px) {

    /* Hide indicator dots on mobile */
    .hero-indicators {
        display: none !important;
    }

    /* Keep progress bar but make it even more subtle */
    .hero-progress {
        height: 2px !important;
        background: rgba(255, 255, 255, 0.10) !important;
    }

    .hero-progress-bar {
        background: #22AEC7 !important;
    }
}

/* ================================================================ */
/* ===== SECTION 2: TRUST / VALUE STRIP ===== */
/* ================================================================ */

.trust-strip {
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid #E5EAED;
    border-bottom: 1px solid #E5EAED;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.trust-strip-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

/* ===== TRUST ITEMS ===== */
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: all 0.18s ease;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-headline {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #35414A;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.trust-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #5E6870;
    margin: 0;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

/* ===== DIVIDERS ===== */
.trust-divider {
    width: 1px;
    height: 55px;
    background: #E5EAED;
    flex-shrink: 0;
}

/* ===== HOVER EFFECTS ===== */
.trust-item:hover .trust-icon {
    opacity: 0.85;
    transform: scale(1.02);
}

.trust-item:hover .trust-headline {
    color: #22AEC7;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1024px) ===== */
/* ================================================================ */
@media screen and (max-width: 1024px) {
    .trust-strip-container {
        padding: 0 30px;
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 0;
    }

    .trust-item {
        gap: 12px;
        padding: 6px 8px;
    }

    .trust-icon {
        width: 42px;
        height: 42px;
    }

    .trust-headline {
        font-size: 13px;
    }

    .trust-description {
        font-size: 12px;
    }

    .trust-divider {
        height: 50px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .trust-strip {
        padding: 16px 0;
        border-top: 1px solid #E5EAED;
        border-bottom: 1px solid #E5EAED;
    }

    .trust-strip-container {
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 8px;
    }

    /* Hide dividers on mobile */
    .trust-divider {
        display: none;
    }

    .trust-item {
        gap: 10px;
        padding: 6px 4px;
        flex-direction: row;
        align-items: center;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .trust-headline {
        font-size: 13px;
        line-height: 1.2;
    }

    .trust-description {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Remove hover effects on mobile */
    .trust-item:hover .trust-icon {
        opacity: 1;
        transform: none;
    }

    .trust-item:hover .trust-headline {
        color: #35414A;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .trust-strip {
        padding: 12px 0;
    }

    .trust-strip-container {
        padding: 0 16px;
        gap: 12px 6px;
    }

    .trust-item {
        gap: 8px;
        padding: 4px 2px;
    }

    .trust-icon {
        width: 34px;
        height: 34px;
    }

    .trust-headline {
        font-size: 12px;
    }

    .trust-description {
        font-size: 10px;
        line-height: 1.25;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .trust-strip {
        padding: 10px 0;
    }

    .trust-strip-container {
        padding: 0 12px;
        gap: 10px 4px;
    }

    .trust-item {
        gap: 6px;
        padding: 2px 0;
    }

    .trust-icon {
        width: 30px;
        height: 30px;
    }

    .trust-headline {
        font-size: 11px;
    }

    .trust-description {
        font-size: 9px;
        line-height: 1.2;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .trust-strip-container {
        padding: 0 8px;
        gap: 8px 4px;
    }

    .trust-item {
        gap: 4px;
    }

    .trust-icon {
        width: 26px;
        height: 26px;
    }

    .trust-headline {
        font-size: 10px;
    }

    .trust-description {
        font-size: 8px;
        line-height: 1.2;
    }
}


/* ================================================================ */
/* ===== SECTION 3: COMPLETE COMPRESSED AIR SOLUTIONS ===== */
/* ================================================================ */

.solutions-section {
    width: 100%;
    background: #FFFFFF;
    padding: 65px 0 60px 0;
    position: relative;
    z-index: 1;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== SECTION HEADER ===== */
.solutions-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 45px;
    align-items: flex-start;
}

.solutions-header-left {
    display: flex;
    flex-direction: column;
}

.solutions-eyebrow {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #22AEC7;
    margin-bottom: 8px;
}

.solutions-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(34px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    color: #17212A;
    max-width: 460px;
    margin: 0;
    letter-spacing: -0.01em;
}

.solutions-header-right {
    display: flex;
    align-items: center;
    padding-top: 8px;
}

.solutions-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5E6870;
    max-width: 420px;
    margin: 0;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #FFFFFF;
    border: 1px solid #E5E9EC;
    border-radius: 6px;
    transition: all 0.22s ease-out;
    overflow: hidden;
}

.product-link {
    display: block;
    text-decoration: none;
    padding: 14px 14px 16px 14px;
    height: 100%;
    transition: all 0.22s ease-out;
}

/* Product Image */
.product-image {
    width: 100%;
    height: 120px;
    background: #F7FAFC;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease-out;
}

/* Product Info */
.product-info {
    position: relative;
    padding-top: 10px;
}

.product-name {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #26333C;
    margin: 0 0 4px 0;
    line-height: 1.3;
    padding-right: 20px;
}

.product-desc {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #65717A;
    margin: 0;
    padding-right: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 14px;
    color: #22AEC7;
    transition: transform 0.22s ease-out;
}

/* ===== CARD HOVER EFFECTS ===== */
.product-card:hover {
    border-color: #22AEC7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 174, 199, 0.08);
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

.product-card:hover .product-arrow {
    transform: translateX(4px);
}

.product-card:hover .product-name {
    color: #22AEC7;
}

/* ===== VIEW ALL BUTTON ===== */
.solutions-footer {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    background: #22AEC7;
    border: 1px solid #22AEC7;
    border-radius: 5px;
    padding: 0 28px;
    height: 46px;
    text-decoration: none;
    transition: all 0.2s ease-out;
    letter-spacing: 0.01em;
}

.btn-view-all .btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease-out;
    font-size: 15px;
}

.btn-view-all:hover {
    background: #1a9bb3;
    border-color: #1a9bb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34, 174, 199, 0.25);
}

.btn-view-all:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-view-all:focus-visible {
    outline: 2px solid #22AEC7;
    outline-offset: 2px;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1024px) ===== */
/* ================================================================ */
@media screen and (max-width: 1024px) {
    .solutions-container {
        padding: 0 24px;
    }

    .solutions-header {
        gap: 30px;
        margin-bottom: 35px;
    }

    .solutions-title {
        font-size: clamp(30px, 3.2vw, 36px);
        max-width: 380px;
    }

    .solutions-description {
        font-size: 13px;
        max-width: 360px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .product-image {
        height: 110px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-desc {
        font-size: 11px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .solutions-section {
        padding: 45px 0 40px 0;
    }

    .solutions-container {
        padding: 0 20px;
    }

    /* Stack header on mobile */
    .solutions-header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .solutions-title {
        font-size: clamp(28px, 6vw, 34px);
        max-width: 100%;
    }

    .solutions-header-right {
        padding-top: 0;
    }

    .solutions-description {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.55;
    }

    .solutions-description br {
        display: none;
    }

    /* 2 columns on mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 30px;
    }

    .product-link {
        padding: 12px 12px 14px 12px;
    }

    .product-image {
        height: 100px;
    }

    .product-name {
        font-size: 13px;
        padding-right: 16px;
    }

    .product-desc {
        font-size: 11px;
        padding-right: 16px;
    }

    .product-arrow {
        font-size: 13px;
    }

    .btn-view-all {
        height: 42px;
        font-size: 12px;
        padding: 0 24px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .solutions-section {
        padding: 35px 0 30px 0;
    }

    .solutions-container {
        padding: 0 16px;
    }

    .solutions-title {
        font-size: clamp(24px, 5.5vw, 28px);
    }

    .solutions-eyebrow {
        font-size: 11px;
    }

    .solutions-description {
        font-size: 13px;
    }

    .products-grid {
        gap: 6px;
    }

    .product-link {
        padding: 10px 10px 12px 10px;
    }

    .product-image {
        height: 85px;
    }

    .product-name {
        font-size: 12px;
        padding-right: 14px;
    }

    .product-desc {
        font-size: 10px;
        padding-right: 14px;
        -webkit-line-clamp: 2;
    }

    .product-arrow {
        font-size: 12px;
    }

    .btn-view-all {
        height: 38px;
        font-size: 11px;
        padding: 0 20px;
        gap: 6px;
    }

    .btn-view-all .btn-arrow {
        font-size: 13px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .solutions-section {
        padding: 28px 0 24px 0;
    }

    .solutions-container {
        padding: 0 12px;
    }

    .solutions-title {
        font-size: clamp(20px, 5vw, 24px);
        line-height: 1.1;
    }

    .solutions-description {
        font-size: 12px;
    }

    .products-grid {
        gap: 5px;
    }

    .product-link {
        padding: 8px 8px 10px 8px;
    }

    .product-image {
        height: 70px;
        border-radius: 3px;
    }

    .product-name {
        font-size: 11px;
        padding-right: 12px;
    }

    .product-desc {
        font-size: 9px;
        padding-right: 12px;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }

    .product-arrow {
        font-size: 11px;
        bottom: -2px;
    }

    .product-info {
        padding-top: 6px;
    }

    .btn-view-all {
        height: 34px;
        font-size: 10px;
        padding: 0 16px;
        gap: 4px;
        border-radius: 4px;
    }

    .btn-view-all .btn-arrow {
        font-size: 11px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .solutions-title {
        font-size: 18px;
    }

    .solutions-eyebrow {
        font-size: 10px;
    }

    .solutions-description {
        font-size: 11px;
    }

    .product-image {
        height: 60px;
    }

    .product-name {
        font-size: 10px;
    }

    .product-desc {
        font-size: 8px;
        -webkit-line-clamp: 2;
    }

    .product-arrow {
        font-size: 10px;
    }

    .btn-view-all {
        height: 30px;
        font-size: 9px;
        padding: 0 12px;
    }

    .btn-view-all .btn-arrow {
        font-size: 10px;
    }
}

/* ================================================================ */
/* ===== SCROLL REVEAL ANIMATION ===== */
/* ================================================================ */
.solutions-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.solutions-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.solutions-section .product-card {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.solutions-section.visible .product-card {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for cards */
.solutions-section.visible .product-card:nth-child(1) {
    transition-delay: 0.05s;
}

.solutions-section.visible .product-card:nth-child(2) {
    transition-delay: 0.10s;
}

.solutions-section.visible .product-card:nth-child(3) {
    transition-delay: 0.15s;
}

.solutions-section.visible .product-card:nth-child(4) {
    transition-delay: 0.20s;
}

.solutions-section.visible .product-card:nth-child(5) {
    transition-delay: 0.10s;
}

.solutions-section.visible .product-card:nth-child(6) {
    transition-delay: 0.15s;
}

.solutions-section.visible .product-card:nth-child(7) {
    transition-delay: 0.20s;
}

.solutions-section.visible .product-card:nth-child(8) {
    transition-delay: 0.25s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .solutions-section,
    .solutions-section .product-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .solutions-section.visible .product-card {
        transition: none;
    }
}


/* ================================================================ */
/* ===== SECTION 4: WHY COMPRESSOTECH? ===== */
/* ================================================================ */

.why-section {
    width: 100%;
    background: #1A242B;
    border-top: 1px solid rgba(34, 174, 199, 0.20);
    border-bottom: 1px solid rgba(34, 174, 199, 0.20);
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 40px;
    align-items: center;
}

/* ===== LEFT CONTENT ===== */
.why-left {
    display: flex;
    flex-direction: column;
}

.why-eyebrow {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #22AEC7;
    margin-bottom: 8px;
}

.why-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(34px, 3.2vw, 46px);
    font-weight: 800;
    line-height: 1.08;
    color: #FFFFFF;
    margin: 0;
    max-width: 480px;
    letter-spacing: -0.01em;
}

/* ===== FEATURES GRID ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== FEATURE ITEM ===== */
.why-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 4px 0;
}

/* Icon Wrapper */
.why-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-icon {
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
}

/* Icon Hover Effects */
.why-item:hover .why-icon-wrapper {
    transform: translateY(-2px);
}

.why-item:hover .why-icon circle:first-child {
    opacity: 1;
    stroke-width: 2.2;
}

.why-item:hover .why-icon .icon-check {
    opacity: 1;
    transform: scale(1.05);
}

.why-item:hover .why-icon .icon-glow {
    opacity: 1;
    fill: #22AEC7;
}

.why-item:hover .why-icon .icon-hand {
    stroke-width: 3;
    opacity: 1;
}

.why-item:hover .why-icon .icon-sparkle {
    opacity: 1;
    fill: #22AEC7;
}

.why-item:hover .why-icon .icon-layer {
    stroke-width: 2.5;
    opacity: 0.9;
}

/* Number */
.why-number {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #22AEC7;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

/* Feature Title */
.why-feature-title {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

/* Feature Description */
.why-feature-desc {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 180px;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1100px) ===== */
/* ================================================================ */
@media screen and (max-width: 1100px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 28px;
    }

    .why-left {
        align-items: flex-start;
    }

    .why-title {
        max-width: 100%;
        font-size: clamp(32px, 4vw, 40px);
    }

    .why-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .why-feature-desc {
        font-size: 12px;
        max-width: 160px;
    }

    .why-icon-wrapper {
        width: 58px;
        height: 58px;
    }

    .why-icon {
        width: 58px;
        height: 58px;
    }

    .why-feature-title {
        font-size: 14px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .why-section {
        padding: 40px 0 36px 0;
    }

    .why-container {
        padding: 0 20px;
        gap: 28px;
    }

    .why-eyebrow {
        font-size: 12px;
    }

    .why-title {
        font-size: clamp(28px, 6vw, 34px);
    }

    /* 2x2 grid on mobile */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .why-item {
        align-items: flex-start;
    }

    .why-icon-wrapper {
        width: 54px;
        height: 54px;
        margin-bottom: 6px;
    }

    .why-icon {
        width: 54px;
        height: 54px;
    }

    .why-number {
        font-size: 14px;
    }

    .why-feature-title {
        font-size: 14px;
    }

    .why-feature-desc {
        font-size: 12px;
        max-width: 100%;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .why-section {
        padding: 32px 0 28px 0;
    }

    .why-container {
        padding: 0 16px;
        gap: 22px;
    }

    .why-eyebrow {
        font-size: 11px;
    }

    .why-title {
        font-size: clamp(24px, 5.5vw, 28px);
    }

    .why-grid {
        gap: 20px 14px;
    }

    .why-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 4px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
    }

    .why-number {
        font-size: 13px;
    }

    .why-feature-title {
        font-size: 13px;
    }

    .why-feature-desc {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .why-section {
        padding: 26px 0 22px 0;
    }

    .why-container {
        padding: 0 12px;
        gap: 18px;
    }

    .why-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .why-grid {
        gap: 16px 10px;
    }

    .why-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .why-icon {
        width: 42px;
        height: 42px;
    }

    .why-number {
        font-size: 12px;
    }

    .why-feature-title {
        font-size: 12px;
    }

    .why-feature-desc {
        font-size: 10px;
        line-height: 1.3;
    }

    .why-eyebrow {
        font-size: 10px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .why-grid {
        gap: 12px 6px;
    }

    .why-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .why-icon {
        width: 36px;
        height: 36px;
    }

    .why-feature-title {
        font-size: 11px;
    }

    .why-feature-desc {
        font-size: 9px;
    }

    .why-number {
        font-size: 11px;
    }
}

/* ================================================================ */
/* ===== SCROLL REVEAL ANIMATION ===== */
/* ================================================================ */
.why-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.why-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-left {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.why-section.visible .why-left {
    opacity: 1;
    transform: translateY(0);
}

.why-item {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.why-section.visible .why-item {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.why-section.visible .why-item:nth-child(1) {
    transition-delay: 0.05s;
}

.why-section.visible .why-item:nth-child(2) {
    transition-delay: 0.12s;
}

.why-section.visible .why-item:nth-child(3) {
    transition-delay: 0.19s;
}

.why-section.visible .why-item:nth-child(4) {
    transition-delay: 0.26s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .why-section,
    .why-section.visible,
    .why-left,
    .why-section.visible .why-left,
    .why-item,
    .why-section.visible .why-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ================================================================ */
/* ===== SECTION 5: INDUSTRIES WE SERVE ===== */
/* ================================================================ */

.industries-section {
    width: 100%;
    background: #FFFFFF;
    padding: 65px 0;
    position: relative;
    z-index: 1;
}

.industries-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 0.85fr 1.9fr 0.75fr;
    gap: 30px;
    align-items: start;
}

/* ===== LEFT CONTENT ===== */
.industries-left {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
}

.industries-eyebrow {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #22AEC7;
    margin-bottom: 8px;
}

.industries-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(36px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    color: #17212A;
    margin: 0 0 14px 0;
    max-width: 320px;
    letter-spacing: -0.01em;
}

.industries-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5E6870;
    margin: 0 0 28px 0;
    max-width: 320px;
}

.industries-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    background: #22AEC7;
    border: 1px solid #22AEC7;
    border-radius: 5px;
    padding: 0 26px;
    height: 46px;
    text-decoration: none;
    transition: all 0.2s ease-out;
    letter-spacing: 0.01em;
    width: fit-content;
}

.industries-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease-out;
    font-size: 15px;
}

.industries-btn:hover {
    background: #1a9bb3;
    border-color: #1a9bb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34, 174, 199, 0.25);
}

.industries-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== INDUSTRY GRID ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

/* ===== INDUSTRY CARD ===== */
.industry-card {
    display: block;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #E4E8EB;
    transition: all 0.3s ease-out;
    background: #FFFFFF;
}

.industry-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #F0F2F4;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease-out;
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(180deg,
            rgba(10, 20, 28, 0.05) 0%,
            rgba(10, 20, 28, 0.55) 50%,
            rgba(10, 20, 28, 0.82) 100%);
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.industry-name {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    z-index: 2;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-out;
}

/* ===== INDUSTRY CARD HOVER ===== */
.industry-card:hover {
    border-color: rgba(34, 174, 199, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.industry-card:hover .industry-img {
    transform: scale(1.04);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(180deg,
            rgba(10, 20, 28, 0.08) 0%,
            rgba(10, 20, 28, 0.60) 40%,
            rgba(10, 20, 28, 0.88) 100%);
}

.industry-card:hover .industry-name {
    transform: translateY(-2px);
}

/* ===== RIGHT CREDIBILITY COLUMN ===== */
.industries-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 4px;
}

.credibility-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.25s ease-out;
    padding: 6px 0;
}

.credibility-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: all 0.3s ease-out;
}

.credibility-content {
    display: flex;
    flex-direction: column;
}

.credibility-number {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #22AEC7;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.credibility-label {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #35414A;
    line-height: 1.3;
    margin-top: 2px;
}

/* ===== CREDIBILITY HOVER ===== */
.credibility-item:hover {
    transform: translateY(-1px);
}

.credibility-item:hover .credibility-icon circle:first-child {
    opacity: 1;
    stroke-width: 2.2;
}

.credibility-item:hover .credibility-number {
    color: #1a9bb3;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1100px) ===== */
/* ================================================================ */
@media screen and (max-width: 1100px) {
    .industries-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 28px;
    }

    .industries-left {
        padding-top: 0;
    }

    .industries-title {
        max-width: 100%;
        font-size: clamp(32px, 4vw, 40px);
    }

    .industries-description {
        max-width: 100%;
    }

    .industries-btn {
        width: fit-content;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .industries-right {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        padding-top: 0;
    }

    .credibility-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 4px 0;
    }

    .credibility-icon {
        width: 40px;
        height: 40px;
    }

    .credibility-number {
        font-size: 20px;
    }

    .credibility-label {
        font-size: 12px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .industries-section {
        padding: 45px 0 40px 0;
    }

    .industries-container {
        padding: 0 20px;
        gap: 28px;
    }

    .industries-eyebrow {
        font-size: 12px;
    }

    .industries-title {
        font-size: clamp(28px, 6vw, 34px);
        max-width: 100%;
    }

    .industries-description {
        font-size: 14px;
        max-width: 100%;
    }

    .industries-description br {
        display: none;
    }

    .industries-btn {
        width: 100%;
        justify-content: center;
        max-width: 260px;
        height: 44px;
        font-size: 12px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .industry-name {
        font-size: 13px;
        bottom: 12px;
        left: 14px;
    }

    .industries-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 20px;
        padding-top: 0;
    }

    .credibility-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 2px 0;
    }

    .credibility-icon {
        width: 38px;
        height: 38px;
    }

    .credibility-number {
        font-size: 18px;
    }

    .credibility-label {
        font-size: 12px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .industries-section {
        padding: 35px 0 30px 0;
    }

    .industries-container {
        padding: 0 16px;
        gap: 22px;
    }

    .industries-eyebrow {
        font-size: 11px;
    }

    .industries-title {
        font-size: clamp(24px, 5.5vw, 28px);
    }

    .industries-description {
        font-size: 13px;
    }

    .industries-grid {
        gap: 6px;
    }

    .industry-name {
        font-size: 12px;
        bottom: 10px;
        left: 12px;
    }

    .industries-right {
        gap: 12px 14px;
    }

    .credibility-icon {
        width: 34px;
        height: 34px;
    }

    .credibility-number {
        font-size: 16px;
    }

    .credibility-label {
        font-size: 11px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .industries-section {
        padding: 28px 0 24px 0;
    }

    .industries-container {
        padding: 0 12px;
        gap: 18px;
    }

    .industries-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .industries-description {
        font-size: 12px;
    }

    .industries-btn {
        height: 38px;
        font-size: 11px;
        padding: 0 18px;
        max-width: 220px;
    }

    .industries-grid {
        gap: 4px;
    }

    .industry-name {
        font-size: 11px;
        bottom: 8px;
        left: 10px;
    }

    .industry-image {
        aspect-ratio: 4/3;
    }

    .industries-right {
        gap: 10px 12px;
    }

    .credibility-icon {
        width: 30px;
        height: 30px;
    }

    .credibility-number {
        font-size: 15px;
    }

    .credibility-label {
        font-size: 10px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .industries-grid {
        gap: 3px;
    }

    .industry-name {
        font-size: 10px;
        bottom: 6px;
        left: 8px;
    }

    .industries-right {
        gap: 8px 10px;
    }

    .credibility-icon {
        width: 26px;
        height: 26px;
    }

    .credibility-number {
        font-size: 13px;
    }

    .credibility-label {
        font-size: 9px;
    }

    .industries-btn {
        height: 34px;
        font-size: 10px;
        padding: 0 14px;
        max-width: 180px;
    }
}

/* ================================================================ */
/* ===== SCROLL REVEAL ANIMATION ===== */
/* ================================================================ */
.industries-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.industries-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.industries-left {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.industries-section.visible .industries-left {
    opacity: 1;
    transform: translateY(0);
}

.industry-card {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.industries-section.visible .industry-card {
    opacity: 1;
    transform: translateY(0);
}

.credibility-item {
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.industries-section.visible .credibility-item {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays - Industry Cards */
.industries-section.visible .industry-card:nth-child(1) {
    transition-delay: 0.05s;
}

.industries-section.visible .industry-card:nth-child(2) {
    transition-delay: 0.10s;
}

.industries-section.visible .industry-card:nth-child(3) {
    transition-delay: 0.15s;
}

.industries-section.visible .industry-card:nth-child(4) {
    transition-delay: 0.20s;
}

.industries-section.visible .industry-card:nth-child(5) {
    transition-delay: 0.10s;
}

.industries-section.visible .industry-card:nth-child(6) {
    transition-delay: 0.15s;
}

.industries-section.visible .industry-card:nth-child(7) {
    transition-delay: 0.20s;
}

.industries-section.visible .industry-card:nth-child(8) {
    transition-delay: 0.25s;
}

/* Stagger delays - Credibility Items */
.industries-section.visible .credibility-item:nth-child(1) {
    transition-delay: 0.10s;
}

.industries-section.visible .credibility-item:nth-child(2) {
    transition-delay: 0.20s;
}

.industries-section.visible .credibility-item:nth-child(3) {
    transition-delay: 0.30s;
}

.industries-section.visible .credibility-item:nth-child(4) {
    transition-delay: 0.40s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .industries-section,
    .industries-section.visible,
    .industries-left,
    .industries-section.visible .industries-left,
    .industry-card,
    .industries-section.visible .industry-card,
    .credibility-item,
    .industries-section.visible .credibility-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ===== RIGHT CREDIBILITY COLUMN ===== */
.industries-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #F8FAFC;
    border: 1px solid #E8ECF0;
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.credibility-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: all 0.3s ease-out;
}

.credibility-content {
    display: flex;
    flex-direction: column;
}

.credibility-number {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #22AEC7;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.credibility-label {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #35414A;
    line-height: 1.3;
    margin-top: 1px;
}

/* ===== CREDIBILITY HOVER ===== */
.credibility-item:hover {
    border-color: #22AEC7;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34, 174, 199, 0.08);
    background: #FFFFFF;
}

.credibility-item:hover .credibility-icon circle:first-child {
    opacity: 1;
    stroke-width: 2.2;
}

.credibility-item:hover .credibility-number {
    color: #1a9bb3;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1100px) ===== */
/* ================================================================ */
@media screen and (max-width: 1100px) {
    .industries-right {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding-top: 0;
    }

    .credibility-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 16px;
        background: #F8FAFC;
        border: 1px solid #E8ECF0;
        border-radius: 8px;
    }

    .credibility-icon {
        width: 40px;
        height: 40px;
    }

    .credibility-number {
        font-size: 20px;
    }

    .credibility-label {
        font-size: 12px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .industries-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding-top: 0;
    }

    .credibility-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        background: #F8FAFC;
        border: 1px solid #E8ECF0;
        border-radius: 8px;
        min-height: 70px;
    }

    .credibility-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .credibility-content {
        flex: 1;
    }

    .credibility-number {
        font-size: 18px;
        line-height: 1.1;
    }

    .credibility-label {
        font-size: 11px;
        line-height: 1.25;
        margin-top: 1px;
    }

    /* Remove hover effects on mobile */
    .credibility-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .industries-right {
        gap: 8px;
    }

    .credibility-item {
        padding: 10px 12px;
        gap: 10px;
        min-height: 62px;
        border-radius: 6px;
    }

    .credibility-icon {
        width: 32px;
        height: 32px;
    }

    .credibility-number {
        font-size: 16px;
    }

    .credibility-label {
        font-size: 10px;
        line-height: 1.2;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .industries-right {
        gap: 6px;
    }

    .credibility-item {
        padding: 8px 10px;
        gap: 8px;
        min-height: 54px;
        border-radius: 5px;
    }

    .credibility-icon {
        width: 28px;
        height: 28px;
    }

    .credibility-number {
        font-size: 14px;
    }

    .credibility-label {
        font-size: 9px;
        line-height: 1.15;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .industries-right {
        gap: 4px;
    }

    .credibility-item {
        padding: 6px 8px;
        gap: 6px;
        min-height: 48px;
        border-radius: 4px;
    }

    .credibility-icon {
        width: 24px;
        height: 24px;
    }

    .credibility-number {
        font-size: 12px;
    }

    .credibility-label {
        font-size: 8px;
        line-height: 1.1;
    }
}

/* ================================================================ */
/* ===== SECTION 5: INDUSTRIES WE SERVE ===== */
/* ================================================================ */

.industries-section {
    width: 100%;
    background: #FFFFFF;
    padding: 65px 0;
    position: relative;
    z-index: 1;
}

.industries-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 0.75fr 2.1fr 0.75fr;
    gap: 35px;
    align-items: start;
}

/* ===== LEFT CONTENT ===== */
.industries-left {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
}

.industries-eyebrow {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #22AEC7;
    margin-bottom: 8px;
}

.industries-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(36px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    color: #17212A;
    margin: 0 0 14px 0;
    max-width: 300px;
    letter-spacing: -0.01em;
}

.industries-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5E6870;
    margin: 0 0 28px 0;
    max-width: 300px;
}

.industries-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    background: #22AEC7;
    border: 1px solid #22AEC7;
    border-radius: 5px;
    padding: 0 26px;
    height: 46px;
    text-decoration: none;
    transition: all 0.2s ease-out;
    letter-spacing: 0.01em;
    width: fit-content;
}

.industries-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease-out;
    font-size: 15px;
}

.industries-btn:hover {
    background: #1a9bb3;
    border-color: #1a9bb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34, 174, 199, 0.25);
}

.industries-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== INDUSTRY GRID - LARGER ON DESKTOP ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* ===== INDUSTRY CARD - LARGER SIZE ===== */
.industry-card {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E4E8EB;
    transition: all 0.3s ease-out;
    background: #FFFFFF;
}

.industry-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #F0F2F4;
    min-height: 140px;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease-out;
    display: block;
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(180deg,
            rgba(10, 20, 28, 0.05) 0%,
            rgba(10, 20, 28, 0.55) 50%,
            rgba(10, 20, 28, 0.82) 100%);
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.industry-name {
    position: absolute;
    bottom: 18px;
    left: 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    z-index: 2;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-out;
}

/* ===== INDUSTRY CARD HOVER ===== */
.industry-card:hover {
    border-color: rgba(34, 174, 199, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.industry-card:hover .industry-img {
    transform: scale(1.06);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(180deg,
            rgba(10, 20, 28, 0.08) 0%,
            rgba(10, 20, 28, 0.60) 40%,
            rgba(10, 20, 28, 0.88) 100%);
}

.industry-card:hover .industry-name {
    transform: translateY(-2px);
}

/* ===== RIGHT CREDIBILITY COLUMN ===== */
.industries-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #F8FAFC;
    border: 1px solid #E8ECF0;
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.credibility-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: all 0.3s ease-out;
}

.credibility-content {
    display: flex;
    flex-direction: column;
}

.credibility-number {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #22AEC7;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.credibility-label {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #35414A;
    line-height: 1.3;
    margin-top: 1px;
}

/* ===== CREDIBILITY HOVER ===== */
.credibility-item:hover {
    border-color: #22AEC7;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34, 174, 199, 0.08);
    background: #FFFFFF;
}

.credibility-item:hover .credibility-icon circle:first-child {
    opacity: 1;
    stroke-width: 2.2;
}

.credibility-item:hover .credibility-number {
    color: #1a9bb3;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1199px) ===== */
/* ================================================================ */
@media screen and (max-width: 1199px) {
    .industries-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 28px;
    }

    .industries-left {
        padding-top: 0;
    }

    .industries-title {
        max-width: 100%;
        font-size: clamp(32px, 4vw, 40px);
    }

    .industries-description {
        max-width: 100%;
    }

    .industries-btn {
        width: fit-content;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .industry-image {
        aspect-ratio: 4/3;
        min-height: 120px;
    }

    .industry-name {
        font-size: 14px;
        bottom: 14px;
        left: 16px;
    }

    .industries-right {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding-top: 0;
    }

    .credibility-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 16px;
    }

    .credibility-icon {
        width: 40px;
        height: 40px;
    }

    .credibility-number {
        font-size: 20px;
    }

    .credibility-label {
        font-size: 12px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET SMALL (768px - 991px) ===== */
/* ================================================================ */
@media screen and (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .industry-image {
        aspect-ratio: 4/3;
        min-height: 110px;
    }

    .industry-name {
        font-size: 13px;
        bottom: 12px;
        left: 14px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .industries-section {
        padding: 45px 0 40px 0;
    }

    .industries-container {
        padding: 0 20px;
        gap: 28px;
    }

    .industries-eyebrow {
        font-size: 12px;
    }

    .industries-title {
        font-size: clamp(28px, 6vw, 34px);
        max-width: 100%;
    }

    .industries-description {
        font-size: 14px;
        max-width: 100%;
    }

    .industries-description br {
        display: none;
    }

    .industries-btn {
        width: 100%;
        justify-content: center;
        max-width: 260px;
        height: 44px;
        font-size: 12px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industry-image {
        aspect-ratio: 4/3;
        min-height: 100px;
    }

    .industry-name {
        font-size: 13px;
        bottom: 12px;
        left: 14px;
    }

    .industries-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding-top: 0;
    }

    .credibility-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        min-height: 70px;
    }

    .credibility-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .credibility-content {
        flex: 1;
    }

    .credibility-number {
        font-size: 18px;
        line-height: 1.1;
    }

    .credibility-label {
        font-size: 11px;
        line-height: 1.25;
        margin-top: 1px;
    }

    .credibility-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .industries-section {
        padding: 35px 0 30px 0;
    }

    .industries-container {
        padding: 0 16px;
        gap: 22px;
    }

    .industries-eyebrow {
        font-size: 11px;
    }

    .industries-title {
        font-size: clamp(24px, 5.5vw, 28px);
    }

    .industries-description {
        font-size: 13px;
    }

    .industries-btn {
        max-width: 220px;
        height: 40px;
        font-size: 11px;
        padding: 0 20px;
    }

    .industries-grid {
        gap: 8px;
    }

    .industry-image {
        aspect-ratio: 4/3;
        min-height: 85px;
    }

    .industry-name {
        font-size: 12px;
        bottom: 10px;
        left: 12px;
    }

    .industries-right {
        gap: 8px;
    }

    .credibility-item {
        padding: 10px 12px;
        gap: 10px;
        min-height: 62px;
        border-radius: 6px;
    }

    .credibility-icon {
        width: 32px;
        height: 32px;
    }

    .credibility-number {
        font-size: 16px;
    }

    .credibility-label {
        font-size: 10px;
        line-height: 1.2;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .industries-section {
        padding: 28px 0 24px 0;
    }

    .industries-container {
        padding: 0 12px;
        gap: 18px;
    }

    .industries-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .industries-description {
        font-size: 12px;
    }

    .industries-btn {
        max-width: 200px;
        height: 36px;
        font-size: 10px;
        padding: 0 16px;
    }

    .industries-grid {
        gap: 6px;
    }

    .industry-image {
        aspect-ratio: 4/3;
        min-height: 70px;
    }

    .industry-name {
        font-size: 11px;
        bottom: 8px;
        left: 10px;
    }

    .industries-right {
        gap: 6px;
    }

    .credibility-item {
        padding: 8px 10px;
        gap: 8px;
        min-height: 54px;
        border-radius: 5px;
    }

    .credibility-icon {
        width: 28px;
        height: 28px;
    }

    .credibility-number {
        font-size: 14px;
    }

    .credibility-label {
        font-size: 9px;
        line-height: 1.15;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .industries-grid {
        gap: 4px;
    }

    .industry-image {
        aspect-ratio: 4/3;
        min-height: 60px;
    }

    .industry-name {
        font-size: 10px;
        bottom: 6px;
        left: 8px;
    }

    .industries-right {
        gap: 4px;
    }

    .credibility-item {
        padding: 6px 8px;
        gap: 6px;
        min-height: 48px;
        border-radius: 4px;
    }

    .credibility-icon {
        width: 24px;
        height: 24px;
    }

    .credibility-number {
        font-size: 12px;
    }

    .credibility-label {
        font-size: 8px;
        line-height: 1.1;
    }

    .industries-btn {
        max-width: 160px;
        height: 32px;
        font-size: 9px;
        padding: 0 12px;
    }
}

/* ================================================================ */
/* ===== SCROLL REVEAL ANIMATION ===== */
/* ================================================================ */
.industries-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.industries-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.industries-left {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.industries-section.visible .industries-left {
    opacity: 1;
    transform: translateY(0);
}

.industry-card {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.industries-section.visible .industry-card {
    opacity: 1;
    transform: translateY(0);
}

.credibility-item {
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.industries-section.visible .credibility-item {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays - Industry Cards */
.industries-section.visible .industry-card:nth-child(1) {
    transition-delay: 0.05s;
}

.industries-section.visible .industry-card:nth-child(2) {
    transition-delay: 0.10s;
}

.industries-section.visible .industry-card:nth-child(3) {
    transition-delay: 0.15s;
}

.industries-section.visible .industry-card:nth-child(4) {
    transition-delay: 0.20s;
}

.industries-section.visible .industry-card:nth-child(5) {
    transition-delay: 0.10s;
}

.industries-section.visible .industry-card:nth-child(6) {
    transition-delay: 0.15s;
}

.industries-section.visible .industry-card:nth-child(7) {
    transition-delay: 0.20s;
}

.industries-section.visible .industry-card:nth-child(8) {
    transition-delay: 0.25s;
}

/* Stagger delays - Credibility Items */
.industries-section.visible .credibility-item:nth-child(1) {
    transition-delay: 0.10s;
}

.industries-section.visible .credibility-item:nth-child(2) {
    transition-delay: 0.20s;
}

.industries-section.visible .credibility-item:nth-child(3) {
    transition-delay: 0.30s;
}

.industries-section.visible .credibility-item:nth-child(4) {
    transition-delay: 0.40s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .industries-section,
    .industries-section.visible,
    .industries-left,
    .industries-section.visible .industries-left,
    .industry-card,
    .industries-section.visible .industry-card,
    .credibility-item,
    .industries-section.visible .credibility-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ================================================================ */
/* ===== SECTION 6: SERVICE & MAINTENANCE ===== */
/* ================================================================ */

.service-section {
    position: relative;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    background: #0F1A22;
    border-top: 1px solid rgba(34, 174, 199, 0.18);
    border-bottom: 1px solid rgba(34, 174, 199, 0.18);
}

/* ===== BACKGROUND IMAGE ===== */
.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--service-bg-image, url('assets/img/home/service-bg.jpg'));
    background-size: cover;
    background-position: 30% center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* ===== OVERLAY ===== */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(8, 18, 25, 0.10) 0%,
            rgba(8, 18, 25, 0.25) 35%,
            rgba(8, 18, 25, 0.78) 58%,
            rgba(8, 18, 25, 0.94) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ===== CONTAINER ===== */
.service-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 360px;
}

/* ===== CONTENT ===== */
.service-content {
    width: 52%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ===== EYEBROW ===== */
.service-eyebrow {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #22AEC7;
    margin-bottom: 10px;
}

/* ===== TITLE ===== */
.service-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(32px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

/* ===== DESCRIPTION ===== */
.service-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 24px 0;
    max-width: 580px;
}

/* ===== SERVICE GRID ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px 12px;
    width: 100%;
    margin-bottom: 24px;
}

/* ===== SERVICE ITEM ===== */
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 6px 4px;
    transition: all 0.3s ease-out;
    cursor: default;
}

.service-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    transition: all 0.3s ease-out;
}

.service-label {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
    transition: all 0.3s ease-out;
}

/* ===== SERVICE ITEM HOVER ===== */
.service-item:hover {
    transform: translateY(-2px);
}

.service-item:hover .service-icon {
    transform: scale(1.06);
}

.service-item:hover .service-icon circle:first-child {
    opacity: 1;
    stroke-width: 2.2;
}

.service-item:hover .service-label {
    color: #22AEC7;
}

/* ===== CTA BUTTON ===== */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    background: #22AEC7;
    border: 1px solid #22AEC7;
    border-radius: 5px;
    padding: 0 28px;
    height: 44px;
    text-decoration: none;
    transition: all 0.25s ease-out;
    letter-spacing: 0.01em;
}

.service-btn-arrow {
    display: inline-block;
    transition: transform 0.25s ease-out;
    font-size: 15px;
}

.service-btn:hover {
    background: #1a9bb3;
    border-color: #1a9bb3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 174, 199, 0.20);
}

.service-btn:hover .service-btn-arrow {
    transform: translateX(4px);
}

.service-btn:focus-visible {
    outline: 2px solid #22AEC7;
    outline-offset: 2px;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1100px) ===== */
/* ================================================================ */
@media screen and (max-width: 1100px) {
    .service-section {
        min-height: 380px;
    }

    .service-container {
        padding: 45px 28px;
        min-height: 380px;
        justify-content: flex-end;
    }

    .service-content {
        width: 56%;
        max-width: 600px;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 16px;
    }

    .service-title {
        font-size: clamp(30px, 3.5vw, 36px);
    }

    .service-description {
        font-size: 13px;
    }

    .service-icon {
        width: 34px;
        height: 34px;
    }

    .service-label {
        font-size: 12px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET SMALL (768px - 991px) ===== */
/* ================================================================ */
@media screen and (max-width: 991px) {
    .service-bg {
        background-position: 35% center;
    }

    .service-overlay {
        background: linear-gradient(90deg,
                rgba(8, 18, 25, 0.15) 0%,
                rgba(8, 18, 25, 0.35) 40%,
                rgba(8, 18, 25, 0.80) 60%,
                rgba(8, 18, 25, 0.95) 100%);
    }

    .service-content {
        width: 65%;
        max-width: 550px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .service-section {
        min-height: 560px;
    }

    .service-bg {
        background-position: 40% center;
        background-size: cover;
    }

    .service-overlay {
        background: linear-gradient(180deg,
                rgba(8, 18, 25, 0.20) 0%,
                rgba(8, 18, 25, 0.50) 35%,
                rgba(8, 18, 25, 0.85) 60%,
                rgba(8, 18, 25, 0.95) 100%);
    }

    .service-container {
        padding: 40px 24px;
        min-height: 560px;
        justify-content: center;
        align-items: flex-end;
    }

    .service-content {
        width: 100%;
        max-width: 100%;
    }

    .service-eyebrow {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .service-title {
        font-size: clamp(28px, 6vw, 34px);
        max-width: 100%;
    }

    .service-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-description br {
        display: none;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 10px;
        margin-bottom: 20px;
    }

    .service-item {
        padding: 4px 2px;
        gap: 4px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
    }

    .service-label {
        font-size: 11px;
    }

    .service-btn {
        width: 100%;
        justify-content: center;
        height: 42px;
        font-size: 12px;
        padding: 0 20px;
    }

    .service-item:hover {
        transform: none;
    }

    .service-item:hover .service-icon {
        transform: none;
    }

    .service-btn:hover {
        transform: none;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .service-section {
        min-height: 520px;
    }

    .service-bg {
        background-position: 45% center;
    }

    .service-overlay {
        background: linear-gradient(180deg,
                rgba(8, 18, 25, 0.25) 0%,
                rgba(8, 18, 25, 0.55) 30%,
                rgba(8, 18, 25, 0.88) 55%,
                rgba(8, 18, 25, 0.96) 100%);
    }

    .service-container {
        padding: 32px 20px;
        min-height: 520px;
    }

    .service-eyebrow {
        font-size: 11px;
    }

    .service-title {
        font-size: clamp(24px, 5.5vw, 28px);
    }

    .service-description {
        font-size: 13px;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 8px;
    }

    .service-icon {
        width: 30px;
        height: 30px;
    }

    .service-label {
        font-size: 10px;
    }

    .service-btn {
        height: 38px;
        font-size: 11px;
        padding: 0 16px;
    }

    .service-btn-arrow {
        font-size: 13px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .service-section {
        min-height: 480px;
    }

    .service-bg {
        background-position: 50% center;
    }

    .service-overlay {
        background: linear-gradient(180deg,
                rgba(8, 18, 25, 0.30) 0%,
                rgba(8, 18, 25, 0.60) 25%,
                rgba(8, 18, 25, 0.90) 50%,
                rgba(8, 18, 25, 0.97) 100%);
    }

    .service-container {
        padding: 28px 16px;
        min-height: 480px;
    }

    .service-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .service-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }

    .service-icon {
        width: 28px;
        height: 28px;
    }

    .service-label {
        font-size: 10px;
    }

    .service-btn {
        height: 36px;
        font-size: 10px;
        padding: 0 14px;
    }

    .service-btn-arrow {
        font-size: 12px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .service-section {
        min-height: 440px;
    }

    .service-container {
        padding: 24px 12px;
        min-height: 440px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 11px;
    }

    .service-grid {
        gap: 10px 6px;
    }

    .service-icon {
        width: 24px;
        height: 24px;
    }

    .service-label {
        font-size: 9px;
    }

    .service-btn {
        height: 32px;
        font-size: 9px;
        padding: 0 12px;
    }

    .service-btn-arrow {
        font-size: 10px;
    }
}

/* ================================================================ */
/* ===== SCROLL REVEAL ANIMATION ===== */
/* ================================================================ */
.service-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-eyebrow {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.service-section.visible .service-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.service-title {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.service-section.visible .service-title {
    opacity: 1;
    transform: translateY(0);
}

.service-description {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.service-section.visible .service-description {
    opacity: 1;
    transform: translateY(0);
}

.service-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.service-section.visible .service-item {
    opacity: 1;
    transform: translateY(0);
}

.service-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.service-section.visible .service-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.service-section.visible .service-item:nth-child(1) {
    transition-delay: 0.05s;
}

.service-section.visible .service-item:nth-child(2) {
    transition-delay: 0.10s;
}

.service-section.visible .service-item:nth-child(3) {
    transition-delay: 0.15s;
}

.service-section.visible .service-item:nth-child(4) {
    transition-delay: 0.20s;
}

.service-section.visible .service-item:nth-child(5) {
    transition-delay: 0.25s;
}

.service-section.visible .service-item:nth-child(6) {
    transition-delay: 0.30s;
}

.service-section.visible .service-btn {
    transition-delay: 0.20s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .service-section,
    .service-section.visible,
    .service-eyebrow,
    .service-section.visible .service-eyebrow,
    .service-title,
    .service-section.visible .service-title,
    .service-description,
    .service-section.visible .service-description,
    .service-item,
    .service-section.visible .service-item,
    .service-btn,
    .service-section.visible .service-btn {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Add this to your CSS file - THIS IS THE MOST IMPORTANT PART */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Make sure the track has the animation */
.marquee-track {
    animation: marqueeScroll 45s linear infinite !important;
}


/* ================================================================ */
/* ===== SECTION 8: CTA / REQUEST A QUOTE ===== */
/* ================================================================ */

.cta-section {
    width: 100%;
    background: #22AEC7;
    padding: 28px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Subtle gradient overlay for depth */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.04) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle border */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== ICON ===== */
.cta-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-icon {
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
}

.cta-icon .cta-check {
    transition: all 0.3s ease;
}

/* ===== ICON HOVER ===== */
.cta-icon-wrapper:hover {
    transform: translateY(-2px);
}

.cta-icon-wrapper:hover .cta-icon {
    transform: scale(1.04);
}

.cta-icon-wrapper:hover .cta-icon circle:first-child {
    stroke: rgba(255, 255, 255, 1);
}

.cta-icon-wrapper:hover .cta-check {
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 3.5;
}

/* ===== CONTENT ===== */
.cta-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cta-heading {
    font-family: 'Manrope', 'Inter', 'Segoe UI', sans-serif;
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 520px;
}

/* ===== BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    height: 50px;
    padding: 0 30px;
    transition: all 0.25s ease-out;
    letter-spacing: 0.01em;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
}

.cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease-out;
    flex-shrink: 0;
}

/* ===== PRIMARY BUTTON ===== */
.cta-btn-primary {
    background: #FFFFFF;
    color: #17212A;
    border-color: #FFFFFF;
}

.cta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.90);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-btn-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-btn-primary:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

/* ===== SECONDARY BUTTON ===== */
.cta-btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.75);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.cta-btn-secondary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-btn-secondary:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1100px) ===== */
/* ================================================================ */
@media screen and (max-width: 1100px) {
    .cta-section {
        padding: 30px 0;
    }

    .cta-container {
        grid-template-columns: 60px 1fr auto;
        gap: 24px;
        padding: 0 28px;
    }

    .cta-icon {
        width: 56px;
        height: 56px;
    }

    .cta-heading {
        font-size: clamp(22px, 2.4vw, 28px);
    }

    .cta-description {
        font-size: 13px;
        max-width: 420px;
    }

    .cta-btn {
        height: 46px;
        padding: 0 24px;
        font-size: 12px;
    }

    .cta-arrow {
        width: 14px;
        height: 14px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
        text-align: center;
        justify-items: center;
    }

    .cta-icon-wrapper {
        margin-bottom: 4px;
    }

    .cta-icon {
        width: 54px;
        height: 54px;
    }

    .cta-content {
        align-items: center;
        text-align: center;
    }

    .cta-heading {
        font-size: clamp(24px, 5.5vw, 28px);
        text-align: center;
    }

    .cta-description {
        font-size: 14px;
        max-width: 380px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
        margin-top: 8px;
    }

    .cta-btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        height: 48px;
        padding: 0 20px;
        font-size: 13px;
        white-space: normal;
    }

    .cta-arrow {
        width: 15px;
        height: 15px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .cta-section {
        padding: 34px 0;
    }

    .cta-container {
        padding: 0 16px;
        gap: 14px;
    }

    .cta-icon {
        width: 48px;
        height: 48px;
    }

    .cta-heading {
        font-size: clamp(22px, 5vw, 26px);
    }

    .cta-description {
        font-size: 13px;
        max-width: 320px;
    }

    .cta-btn {
        height: 46px;
        font-size: 12px;
        max-width: 300px;
        padding: 0 16px;
    }

    .cta-arrow {
        width: 14px;
        height: 14px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .cta-section {
        padding: 28px 0;
    }

    .cta-container {
        padding: 0 14px;
        gap: 12px;
    }

    .cta-icon {
        width: 42px;
        height: 42px;
    }

    .cta-heading {
        font-size: 20px;
    }

    .cta-description {
        font-size: 12px;
        max-width: 280px;
    }

    .cta-btn {
        height: 42px;
        font-size: 11px;
        max-width: 260px;
        padding: 0 14px;
    }

    .cta-arrow {
        width: 12px;
        height: 12px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .cta-section {
        padding: 24px 0;
    }

    .cta-container {
        padding: 0 12px;
        gap: 10px;
    }

    .cta-icon {
        width: 38px;
        height: 38px;
    }

    .cta-heading {
        font-size: 18px;
    }

    .cta-description {
        font-size: 11px;
        max-width: 240px;
    }

    .cta-btn {
        height: 38px;
        font-size: 10px;
        max-width: 220px;
        padding: 0 12px;
    }

    .cta-arrow {
        width: 11px;
        height: 11px;
    }
}

/* ================================================================ */
/* ===== SCROLL REVEAL ===== */
/* ================================================================ */
.cta-section {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-icon-wrapper {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cta-section.visible .cta-icon-wrapper {
    opacity: 1;
    transform: scale(1);
}

.cta-heading {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cta-section.visible .cta-heading {
    opacity: 1;
    transform: translateY(0);
}

.cta-description {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cta-section.visible .cta-description {
    opacity: 1;
    transform: translateY(0);
}

.cta-buttons {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cta-section.visible .cta-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.cta-section.visible .cta-icon-wrapper {
    transition-delay: 0.05s;
}

.cta-section.visible .cta-heading {
    transition-delay: 0.10s;
}

.cta-section.visible .cta-description {
    transition-delay: 0.15s;
}

.cta-section.visible .cta-buttons {
    transition-delay: 0.20s;
}

/* ================================================================ */
/* ===== REDUCED MOTION ===== */
/* ================================================================ */
@media (prefers-reduced-motion: reduce) {

    .cta-section,
    .cta-section.visible,
    .cta-icon-wrapper,
    .cta-section.visible .cta-icon-wrapper,
    .cta-heading,
    .cta-section.visible .cta-heading,
    .cta-description,
    .cta-section.visible .cta-description,
    .cta-buttons,
    .cta-section.visible .cta-buttons {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cta-icon-wrapper:hover {
        transform: none;
    }

    .cta-icon-wrapper:hover .cta-icon {
        transform: none;
    }
}

/* ================================================================ */
/* ===== SECTION 9: FOOTER ===== */
/* ================================================================ */

.site-footer {
    position: relative;
    width: 100%;
    background: #1A242B;
    overflow: hidden;
    z-index: 1;
}

/* ===== TOP ACCENT LINE ===== */
.footer-accent {
    width: 100%;
    height: 2px;
    background: #22AEC7;
    position: relative;
    z-index: 2;
}

/* ===== BACKGROUND IMAGE WRAPPER ===== */
.footer-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ===== BACKGROUND IMAGE ===== */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* ===== BACKGROUND OVERLAY ===== */
.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(15, 27, 36, 0.92) 0%,
            rgba(15, 27, 36, 0.94) 35%,
            rgba(15, 27, 36, 0.96) 70%,
            rgba(15, 27, 36, 0.97) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ===== MAIN CONTAINER ===== */
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 32px 32px 32px;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr 1.25fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER COLUMNS ===== */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* ===== BRAND COLUMN ===== */
.footer-brand {
    gap: 12px;
}

.footer-logo-wrapper {
    margin-bottom: 4px;
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.footer-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 6px 0;
    max-width: 240px;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.60);
    transition: all 0.25s ease-out;
    text-decoration: none;
}

.social-link svg {
    width: 18px;
    height: 18px;
    transition: all 0.25s ease-out;
}

.social-link:hover {
    color: #22AEC7;
    transform: translateY(-2px);
    background: rgba(34, 174, 199, 0.10);
}

.social-link:focus-visible {
    outline: 2px solid rgba(34, 174, 199, 0.65);
    outline-offset: 2px;
}

/* ===== FOOTER HEADINGS ===== */
.footer-heading {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 14px 0;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links li a {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    transition: all 0.2s ease-out;
    display: inline-block;
}

.footer-links li a:hover {
    color: #22AEC7;
    transform: translateX(2px);
}

.footer-links li a:focus-visible {
    outline: 2px solid rgba(34, 174, 199, 0.65);
    outline-offset: 2px;
}

/* ===== COMPANY COLUMN ===== */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-company-links {
    display: flex;
    flex-direction: column;
}

/* ===== CONTACT ===== */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.45;
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.50);
    margin-top: 1px;
    transition: all 0.25s ease-out;
}

.footer-contact-list li:hover .contact-icon {
    color: #22AEC7;
    transform: translateX(1px);
}

.footer-contact-list li:hover {
    color: rgba(255, 255, 255, 0.92);
}

/* ===== DIVIDER ===== */
.footer-divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.footer-divider::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* ===== BOTTOM ROW ===== */
.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 16px 0 22px 0;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.2s ease-out;
}

.footer-legal a:hover {
    color: #22AEC7;
}

.footer-legal a:focus-visible {
    outline: 2px solid rgba(34, 174, 199, 0.65);
    outline-offset: 2px;
}

.legal-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1100px) ===== */
/* ================================================================ */
@media screen and (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 30px;
        padding: 36px 28px 28px 28px;
    }

    .footer-logo {
        height: 36px;
        max-width: 160px;
    }

    .footer-description {
        font-size: 12px;
        max-width: 200px;
    }

    .footer-links li a {
        font-size: 12px;
    }

    .footer-contact-list li {
        font-size: 12px;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET SMALL (768px - 991px) ===== */
/* ================================================================ */
@media screen and (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 40px;
        padding: 34px 24px 26px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-company {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-company-links {
        display: flex;
        flex-direction: column;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
    }

    .footer-divider {
        padding: 0 24px;
    }

    .footer-bottom-container {
        padding: 0 24px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 20px 24px 20px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        height: 34px;
        max-width: 150px;
    }

    .footer-description {
        font-size: 12px;
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-company {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .footer-company-links {
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
        font-size: 13px;
    }

    .contact-icon {
        width: 17px;
        height: 17px;
        margin-top: 0;
    }

    .footer-divider {
        padding: 0 20px;
    }

    .footer-bottom {
        padding: 14px 0 18px 0;
    }

    .footer-bottom-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-legal a {
        font-size: 11px;
    }

    .legal-divider {
        font-size: 11px;
    }

    .footer-links li a:hover {
        transform: none;
    }

    .footer-contact-list li:hover .contact-icon {
        transform: none;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .footer-container {
        padding: 28px 16px 20px 16px;
        gap: 20px;
    }

    .footer-logo {
        height: 30px;
        max-width: 130px;
    }

    .footer-description {
        font-size: 11px;
    }

    .footer-heading {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer-links li a {
        font-size: 12px;
    }

    .footer-links {
        gap: 5px;
    }

    .footer-contact-list li {
        font-size: 12px;
        gap: 8px;
    }

    .contact-icon {
        width: 15px;
        height: 15px;
    }

    .footer-divider {
        padding: 0 16px;
    }

    .footer-bottom-container {
        padding: 0 16px;
    }

    .footer-copyright {
        font-size: 10px;
    }

    .footer-legal a {
        font-size: 10px;
    }

    .legal-divider {
        font-size: 10px;
    }

    .social-link {
        width: 34px;
        height: 34px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .footer-container {
        padding: 24px 14px 16px 14px;
        gap: 18px;
    }

    .footer-logo {
        height: 26px;
        max-width: 110px;
    }

    .footer-description {
        font-size: 10px;
    }

    .footer-heading {
        font-size: 10px;
        letter-spacing: 0.03em;
    }

    .footer-links li a {
        font-size: 11px;
    }

    .footer-contact-list li {
        font-size: 11px;
    }

    .contact-icon {
        width: 14px;
        height: 14px;
    }

    .footer-bottom-container {
        padding: 0 14px;
    }

    .footer-copyright {
        font-size: 9px;
    }

    .footer-legal a {
        font-size: 9px;
    }

    .legal-divider {
        font-size: 9px;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .social-link svg {
        width: 14px;
        height: 14px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - VERY SMALL (320px) ===== */
/* ================================================================ */
@media screen and (max-width: 320px) {
    .footer-container {
        padding: 20px 12px 14px 12px;
        gap: 14px;
    }

    .footer-logo {
        height: 22px;
        max-width: 90px;
    }

    .footer-description {
        font-size: 9px;
    }

    .footer-heading {
        font-size: 9px;
        letter-spacing: 0.02em;
    }

    .footer-links li a {
        font-size: 10px;
    }

    .footer-contact-list li {
        font-size: 10px;
    }

    .contact-icon {
        width: 12px;
        height: 12px;
    }

    .footer-bottom-container {
        padding: 0 12px;
    }

    .footer-copyright {
        font-size: 8px;
    }

    .footer-legal a {
        font-size: 8px;
    }

    .legal-divider {
        font-size: 8px;
    }

    .social-link {
        width: 26px;
        height: 26px;
    }

    .social-link svg {
        width: 12px;
        height: 12px;
    }
}

/* ================================================================ */
/* ===== SCROLL REVEAL ===== */
/* ================================================================ */
.site-footer {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.site-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-column {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.site-footer.visible .footer-column {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.site-footer.visible .footer-column:nth-child(1) {
    transition-delay: 0.05s;
}

.site-footer.visible .footer-column:nth-child(2) {
    transition-delay: 0.10s;
}

.site-footer.visible .footer-column:nth-child(3) {
    transition-delay: 0.15s;
}

.site-footer.visible .footer-column:nth-child(4) {
    transition-delay: 0.20s;
}

.site-footer.visible .footer-column:nth-child(5) {
    transition-delay: 0.25s;
}

/* ================================================================ */
/* ===== REDUCED MOTION ===== */
/* ================================================================ */
@media (prefers-reduced-motion: reduce) {

    .site-footer,
    .site-footer.visible,
    .footer-column,
    .site-footer.visible .footer-column {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .social-link:hover {
        transform: none;
    }

    .footer-links li a:hover {
        transform: none;
    }

    .footer-contact-list li:hover .contact-icon {
        transform: none;
    }
}

/* Background image */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Transparent overlay layer */
.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(15, 27, 36, 0.92) 0%,
            rgba(15, 27, 36, 0.94) 35%,
            rgba(15, 27, 36, 0.96) 70%,
            rgba(15, 27, 36, 0.97) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ===== BACKGROUND IMAGE ===== */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 70% auto;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* ================================================================ */
/* ===== GLOBAL FONT SIZE INCREASE (EXCEPT HERO) ===== */
/* ================================================================ */

/* ===== SECTION 2: TRUST STRIP ===== */
.trust-headline {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.trust-description {
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* ===== SECTION 3: PRODUCT SOLUTIONS ===== */
.solutions-eyebrow {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
}

.solutions-title {
    font-size: clamp(42px, 4.5vw, 54px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
}

.solutions-description {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

.product-name {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.product-desc {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.btn-view-all {
    font-size: 16px !important;
    font-weight: 700 !important;
    height: 52px !important;
    padding: 0 32px !important;
}

/* ===== SECTION 4: WHY COMPRESSOTECH ===== */
.why-eyebrow {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
}

.why-title {
    font-size: clamp(42px, 4vw, 54px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
}

.why-feature-title {
    font-size: 19px !important;
    font-weight: 700 !important;
}

.why-feature-desc {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.why-number {
    font-size: 19px !important;
    font-weight: 700 !important;
}

/* ===== SECTION 5: INDUSTRIES ===== */
.industries-eyebrow {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
}

.industries-title {
    font-size: clamp(42px, 4vw, 52px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
}

.industries-description {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.industries-btn {
    font-size: 16px !important;
    font-weight: 700 !important;
    height: 50px !important;
    padding: 0 30px !important;
}

.industry-name {
    font-size: 20px !important;
    font-weight: 600 !important;
}

.credibility-number {
    font-size: 28px !important;
    font-weight: 800 !important;
}

.credibility-label {
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

/* ===== SECTION 6: SERVICE & MAINTENANCE ===== */
.service-eyebrow {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
}

.service-title {
    font-size: clamp(40px, 4vw, 48px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
}

.service-description {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.service-label {
    font-size: 15px !important;
    font-weight: 600 !important;
}

.service-btn {
    font-size: 16px !important;
    font-weight: 700 !important;
    height: 50px !important;
    padding: 0 32px !important;
}

/* ===== SECTION 7: PARTNERS ===== */
.partners-eyebrow {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
}

/* ===== SECTION 8: CTA ===== */
.cta-heading {
    font-size: clamp(32px, 3.5vw, 40px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
}

.cta-description {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.cta-btn {
    font-size: 16px !important;
    font-weight: 700 !important;
    height: 54px !important;
    padding: 0 34px !important;
}

/* ===== SECTION 9: FOOTER ===== */
.footer-description {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.footer-heading {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
}

.footer-links li a {
    font-size: 16px !important;
    font-weight: 400 !important;
}

.footer-contact-list li {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.footer-copyright {
    font-size: 14px !important;
    font-weight: 400 !important;
}

.footer-legal a {
    font-size: 14px !important;
    font-weight: 400 !important;
}

.contact-icon {
    width: 20px !important;
    height: 20px !important;
}

/* ================================================================ */
/* ===== TABLET (768px - 1024px) ===== */
/* ================================================================ */
@media screen and (max-width: 1024px) {
    .trust-headline {
        font-size: 17px !important;
    }

    .trust-description {
        font-size: 15px !important;
    }

    .solutions-title {
        font-size: clamp(38px, 4vw, 46px) !important;
    }

    .solutions-description {
        font-size: 17px !important;
    }

    .product-name {
        font-size: 17px !important;
    }

    .product-desc {
        font-size: 14px !important;
    }

    .why-title {
        font-size: clamp(38px, 4vw, 46px) !important;
    }

    .why-feature-title {
        font-size: 18px !important;
    }

    .why-feature-desc {
        font-size: 15px !important;
    }

    .industries-title {
        font-size: clamp(38px, 4vw, 46px) !important;
    }

    .industries-description {
        font-size: 17px !important;
    }

    .industry-name {
        font-size: 18px !important;
    }

    .service-title {
        font-size: clamp(36px, 3.8vw, 44px) !important;
    }

    .service-description {
        font-size: 17px !important;
    }

    .cta-heading {
        font-size: clamp(30px, 3.2vw, 36px) !important;
    }

    .cta-description {
        font-size: 17px !important;
    }
}

/* ================================================================ */
/* ===== MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {

    /* Trust Strip */
    .trust-headline {
        font-size: 16px !important;
    }

    .trust-description {
        font-size: 14px !important;
    }

    /* Products */
    .solutions-eyebrow {
        font-size: 14px !important;
    }

    .solutions-title {
        font-size: clamp(34px, 7vw, 40px) !important;
    }

    .solutions-description {
        font-size: 16px !important;
    }

    .product-name {
        font-size: 16px !important;
    }

    .product-desc {
        font-size: 14px !important;
    }

    .btn-view-all {
        font-size: 14px !important;
        height: 48px !important;
    }

    /* Why CompressoTech */
    .why-eyebrow {
        font-size: 14px !important;
    }

    .why-title {
        font-size: clamp(34px, 7vw, 40px) !important;
    }

    .why-feature-title {
        font-size: 16px !important;
    }

    .why-feature-desc {
        font-size: 14px !important;
    }

    .why-number {
        font-size: 16px !important;
    }

    /* Industries */
    .industries-eyebrow {
        font-size: 14px !important;
    }

    .industries-title {
        font-size: clamp(34px, 7vw, 40px) !important;
    }

    .industries-description {
        font-size: 16px !important;
    }

    .industries-btn {
        font-size: 14px !important;
        height: 46px !important;
    }

    .industry-name {
        font-size: 16px !important;
    }

    .credibility-number {
        font-size: 24px !important;
    }

    .credibility-label {
        font-size: 14px !important;
    }

    /* Service */
    .service-eyebrow {
        font-size: 14px !important;
    }

    .service-title {
        font-size: clamp(34px, 7vw, 40px) !important;
    }

    .service-description {
        font-size: 16px !important;
    }

    .service-label {
        font-size: 14px !important;
    }

    .service-btn {
        font-size: 14px !important;
        height: 46px !important;
    }

    /* CTA */
    .cta-heading {
        font-size: clamp(28px, 6vw, 34px) !important;
    }

    .cta-description {
        font-size: 16px !important;
    }

    .cta-btn {
        font-size: 14px !important;
        height: 48px !important;
        padding: 0 24px !important;
    }

    /* Footer */
    .footer-description {
        font-size: 15px !important;
    }

    .footer-heading {
        font-size: 14px !important;
    }

    .footer-links li a {
        font-size: 15px !important;
    }

    .footer-contact-list li {
        font-size: 15px !important;
    }

    .footer-copyright {
        font-size: 13px !important;
    }

    .footer-legal a {
        font-size: 13px !important;
    }

    .contact-icon {
        width: 18px !important;
        height: 18px !important;
    }
}

/* ================================================================ */
/* ===== SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .trust-headline {
        font-size: 15px !important;
    }

    .trust-description {
        font-size: 13px !important;
    }

    .solutions-title {
        font-size: clamp(30px, 6vw, 34px) !important;
    }

    .solutions-description {
        font-size: 15px !important;
    }

    .product-name {
        font-size: 15px !important;
    }

    .product-desc {
        font-size: 13px !important;
    }

    .btn-view-all {
        font-size: 13px !important;
        height: 44px !important;
        padding: 0 20px !important;
    }

    .why-title {
        font-size: clamp(30px, 6vw, 34px) !important;
    }

    .why-feature-title {
        font-size: 15px !important;
    }

    .why-feature-desc {
        font-size: 13px !important;
    }

    .why-number {
        font-size: 15px !important;
    }

    .industries-title {
        font-size: clamp(30px, 6vw, 34px) !important;
    }

    .industries-description {
        font-size: 15px !important;
    }

    .industries-btn {
        font-size: 13px !important;
        height: 42px !important;
        padding: 0 20px !important;
    }

    .industry-name {
        font-size: 15px !important;
    }

    .credibility-number {
        font-size: 22px !important;
    }

    .credibility-label {
        font-size: 13px !important;
    }

    .service-title {
        font-size: clamp(30px, 6vw, 34px) !important;
    }

    .service-description {
        font-size: 15px !important;
    }

    .service-label {
        font-size: 13px !important;
    }

    .service-btn {
        font-size: 13px !important;
        height: 42px !important;
        padding: 0 20px !important;
    }

    .cta-heading {
        font-size: clamp(26px, 5vw, 30px) !important;
    }

    .cta-description {
        font-size: 15px !important;
    }

    .cta-btn {
        font-size: 13px !important;
        height: 44px !important;
        padding: 0 20px !important;
    }

    .footer-description {
        font-size: 14px !important;
    }

    .footer-heading {
        font-size: 13px !important;
    }

    .footer-links li a {
        font-size: 14px !important;
    }

    .footer-contact-list li {
        font-size: 14px !important;
    }

    .footer-copyright {
        font-size: 12px !important;
    }

    .footer-legal a {
        font-size: 12px !important;
    }

    .contact-icon {
        width: 16px !important;
        height: 16px !important;
    }
}

/* ================================================================ */
/* ===== EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .solutions-title {
        font-size: clamp(26px, 5vw, 30px) !important;
    }

    .why-title {
        font-size: clamp(26px, 5vw, 30px) !important;
    }

    .industries-title {
        font-size: clamp(26px, 5vw, 30px) !important;
    }

    .service-title {
        font-size: clamp(26px, 5vw, 30px) !important;
    }

    .cta-heading {
        font-size: clamp(24px, 4.5vw, 28px) !important;
    }

    .product-name {
        font-size: 14px !important;
    }

    .product-desc {
        font-size: 12px !important;
    }

    .why-feature-title {
        font-size: 14px !important;
    }

    .why-feature-desc {
        font-size: 12px !important;
    }

    .industry-name {
        font-size: 14px !important;
    }

    .service-label {
        font-size: 12px !important;
    }

    .footer-links li a {
        font-size: 13px !important;
    }

    .footer-contact-list li {
        font-size: 13px !important;
    }
}

/* ================================================================ */
/* ===== GLOBAL FONT SIZE INCREASE (EXCEPT HERO) ===== */
/* ================================================================ */

/* ===== SECTION 2: TRUST STRIP ===== */
.trust-headline {
    font-size: 16px !important;
    /* Was 14px */
}

.trust-description {
    font-size: 14px !important;
    /* Was 13px */
}

/* ===== SECTION 3: PRODUCT SOLUTIONS ===== */
.solutions-eyebrow {
    font-size: 14px !important;
    /* Was 12px */
}

.solutions-title {
    font-size: clamp(38px, 4vw, 48px) !important;
    /* Was 34-42px */
}

.solutions-description {
    font-size: 16px !important;
    /* Was 14px */
}

.product-name {
    font-size: 16px !important;
    /* Was 14px */
}

.product-desc {
    font-size: 14px !important;
    /* Was 12px */
}

.btn-view-all {
    font-size: 15px !important;
    /* Was 13px */
}

/* ===== SECTION 4: WHY COMPRESSOTECH ===== */
.why-eyebrow {
    font-size: 15px !important;
    /* Was 14px */
}

.why-title {
    font-size: clamp(38px, 3.5vw, 50px) !important;
    /* Was 34-46px */
}

.why-feature-title {
    font-size: 17px !important;
    /* Was 15px */
}

.why-feature-desc {
    font-size: 14px !important;
    /* Was 13px */
}

.why-number {
    font-size: 17px !important;
    /* Was 15px */
}

/* ===== SECTION 5: INDUSTRIES ===== */
.industries-eyebrow {
    font-size: 15px !important;
    /* Was 13px */
}

.industries-title {
    font-size: clamp(38px, 3.5vw, 48px) !important;
    /* Was 36-44px */
}

.industries-description {
    font-size: 16px !important;
    /* Was 14px */
}

.industries-btn {
    font-size: 15px !important;
    /* Was 13px */
}

.industry-name {
    font-size: 18px !important;
    /* Was 15px */
}

.credibility-number {
    font-size: 26px !important;
    /* Was 24px */
}

.credibility-label {
    font-size: 15px !important;
    /* Was 13px */
}

/* ===== SECTION 6: SERVICE & MAINTENANCE ===== */
.service-eyebrow {
    font-size: 15px !important;
    /* Was 13px */
}

.service-title {
    font-size: clamp(36px, 3.5vw, 44px) !important;
    /* Was 32-40px */
}

.service-description {
    font-size: 16px !important;
    /* Was 14px */
}

.service-label {
    font-size: 14px !important;
    /* Was 12px */
}

.service-btn {
    font-size: 15px !important;
    /* Was 13px */
}

/* ===== SECTION 7: PARTNERS ===== */
.partners-eyebrow {
    font-size: 13px !important;
    /* Was 11px */
}

/* ===== SECTION 8: CTA ===== */
.cta-heading {
    font-size: clamp(28px, 3vw, 36px) !important;
    /* Was 24-32px */
}

.cta-description {
    font-size: 16px !important;
    /* Was 14px */
}

.cta-btn {
    font-size: 15px !important;
    /* Was 13px */
}

/* ===== SECTION 9: FOOTER ===== */
.footer-description {
    font-size: 15px !important;
    /* Was 13px */
}

.footer-heading {
    font-size: 14px !important;
    /* Was 12px */
}

.footer-links li a {
    font-size: 15px !important;
    /* Was 13px */
}

.footer-contact-list li {
    font-size: 15px !important;
    /* Was 13px */
}

.footer-copyright {
    font-size: 14px !important;
    /* Was 12px */
}

.footer-legal a {
    font-size: 14px !important;
    /* Was 12px */
}

/* ================================================================ */
/* ===== MOBILE ADJUSTMENTS ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {

    /* Trust Strip */
    .trust-headline {
        font-size: 15px !important;
    }

    .trust-description {
        font-size: 13px !important;
    }

    /* Products */
    .solutions-title {
        font-size: clamp(32px, 7vw, 38px) !important;
    }

    .solutions-description {
        font-size: 15px !important;
    }

    .product-name {
        font-size: 15px !important;
    }

    .product-desc {
        font-size: 13px !important;
    }

    /* Why CompressoTech */
    .why-title {
        font-size: clamp(32px, 7vw, 38px) !important;
    }

    .why-feature-title {
        font-size: 15px !important;
    }

    .why-feature-desc {
        font-size: 13px !important;
    }

    /* Industries */
    .industries-title {
        font-size: clamp(32px, 7vw, 38px) !important;
    }

    .industries-description {
        font-size: 15px !important;
    }

    .industry-name {
        font-size: 15px !important;
    }

    .credibility-number {
        font-size: 22px !important;
    }

    .credibility-label {
        font-size: 13px !important;
    }

    /* Service */
    .service-title {
        font-size: clamp(32px, 7vw, 38px) !important;
    }

    .service-description {
        font-size: 15px !important;
    }

    .service-label {
        font-size: 13px !important;
    }

    /* CTA */
    .cta-heading {
        font-size: clamp(26px, 6vw, 32px) !important;
    }

    .cta-description {
        font-size: 15px !important;
    }

    /* Footer */
    .footer-description {
        font-size: 14px !important;
    }

    .footer-links li a {
        font-size: 14px !important;
    }

    .footer-contact-list li {
        font-size: 14px !important;
    }
}

/* ================================================================ */
/* ===== SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .trust-headline {
        font-size: 14px !important;
    }

    .trust-description {
        font-size: 12px !important;
    }

    .solutions-title {
        font-size: clamp(28px, 6vw, 32px) !important;
    }

    .product-name {
        font-size: 14px !important;
    }

    .product-desc {
        font-size: 12px !important;
    }

    .why-title {
        font-size: clamp(28px, 6vw, 32px) !important;
    }

    .why-feature-title {
        font-size: 14px !important;
    }

    .why-feature-desc {
        font-size: 12px !important;
    }

    .industries-title {
        font-size: clamp(28px, 6vw, 32px) !important;
    }

    .industry-name {
        font-size: 14px !important;
    }

    .credibility-number {
        font-size: 20px !important;
    }

    .credibility-label {
        font-size: 12px !important;
    }

    .service-title {
        font-size: clamp(28px, 6vw, 32px) !important;
    }

    .service-label {
        font-size: 12px !important;
    }

    .cta-heading {
        font-size: clamp(24px, 5vw, 28px) !important;
    }

    .cta-description {
        font-size: 14px !important;
    }

    .cta-btn {
        font-size: 14px !important;
    }

    .footer-links li a {
        font-size: 13px !important;
    }

    .footer-contact-list li {
        font-size: 13px !important;
    }
}

@media screen and (max-width: 880px) {
    .hero-slide {
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-bg-mobile {
        position: absolute !important;
        top: -10% !important;
        left: -10% !important;
        width: 120% !important;
        height: 120% !important;
        background-size: cover !important;
        background-position: center !important;
        z-index: 0 !important;
    }
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #FFFFFF;
    border: 1px solid #E5E9EC;
    border-radius: 6px;
    transition: all 0.22s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-link {
    display: block;
    text-decoration: none;
    padding: 14px 14px 0 14px;
    flex: 1;
}

.product-image {
    width: 100%;
    height: 120px;
    background: #F7FAFC;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease-out;
}

.product-info {
    padding-top: 10px;
    padding-bottom: 4px;
}

.product-name {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #26333C;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.product-desc {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #65717A;
    margin: 0;
}

/* ===== PRODUCT FOOTER ===== */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 14px 14px;
    border-top: 1px solid #F0F2F4;
    margin-top: 6px;
}

.product-arrow {
    font-size: 16px;
    color: #22AEC7;
    transition: transform 0.22s ease-out;
    font-weight: 600;
}

/* ===== ELGi BUTTON ON CARD ===== */
.btn-elgi-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #22AEC7;
    background: rgba(34, 174, 199, 0.08);
    border: 1px solid rgba(34, 174, 199, 0.20);
    border-radius: 4px;
    padding: 4px 10px 4px 12px;
    text-decoration: none;
    transition: all 0.25s ease-out;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.elgi-icon {
    width: 14px;
    height: 14px;
    transition: all 0.25s ease-out;
    flex-shrink: 0;
}

.elgi-text {
    transition: all 0.25s ease-out;
}

.btn-elgi-card:hover {
    background: #22AEC7;
    color: #FFFFFF;
    border-color: #22AEC7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 174, 199, 0.25);
}

.btn-elgi-card:hover .elgi-icon {
    color: #FFFFFF;
}

.btn-elgi-card:focus-visible {
    outline: 2px solid #22AEC7;
    outline-offset: 2px;
}

/* ===== CARD HOVER ===== */
.product-card:hover {
    border-color: #22AEC7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 174, 199, 0.08);
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

.product-card:hover .product-arrow {
    transform: translateX(4px);
}

.product-card:hover .product-name {
    color: #22AEC7;
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .product-footer {
        padding: 8px 12px 12px 12px;
    }

    .btn-elgi-card {
        font-size: 10px;
        padding: 3px 8px 3px 10px;
    }

    .elgi-icon {
        width: 12px;
        height: 12px;
    }

    .product-arrow {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .product-footer {
        padding: 6px 10px 10px 10px;
    }

    .btn-elgi-card {
        font-size: 9px;
        padding: 2px 6px 2px 8px;
        gap: 4px;
    }

    .elgi-icon {
        width: 11px;
        height: 11px;
    }

    .product-arrow {
        font-size: 13px;
    }
}

/* ===== CONTACT ===== */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.45;
}

.footer-contact-list li:last-child {
    line-height: 1.5;
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.50);
    margin-top: 2px;
    transition: all 0.25s ease-out;
}

.footer-contact-list li:hover .contact-icon {
    color: #22AEC7;
    transform: translateX(1px);
}

.footer-contact-list li:hover {
    color: rgba(255, 255, 255, 0.92);
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .footer-contact-list li {
        justify-content: center;
        text-align: center;
        font-size: 13px;
    }

    .footer-contact-list li:last-child {
        text-align: center;
    }

    .contact-icon {
        width: 17px;
        height: 17px;
        margin-top: 1px;
    }
}


/* ================================================================ */
/* ===== CHATBOT GLOBAL STYLES ===== */
/* ================================================================ */

#chatbot {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99999;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* ===== CHAT LAUNCHER ===== */
.chat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #22AEC7;
    border: none;
    cursor: pointer;
    z-index: 100000;
    box-shadow: 0 4px 20px rgba(34, 174, 199, 0.35);
    transition: all 0.25s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.chat-launcher svg {
    width: 28px;
    height: 28px;
}

.chat-launcher:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(34, 174, 199, 0.45);
}

.chat-launcher:focus-visible {
    outline: 2px solid #22AEC7;
    outline-offset: 4px;
}

/* Launcher Pulse */
.launcher-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50%;
    border: 2px solid rgba(34, 174, 199, 0.3);
    animation: pulse-ring 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===== CHAT WINDOW ===== */
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 400px;
    height: 640px;
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-window.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== CHAT HEADER ===== */
.chat-header {
    background: #1A242B;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chat-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.chat-brand {
    display: flex;
    flex-direction: column;
}

.chat-brand-name {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.chat-brand-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.chat-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22AEC7;
    display: inline-block;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.chat-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-out;
    border-radius: 4px;
}

.chat-close svg {
    width: 20px;
    height: 20px;
}

.chat-close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

/* ===== CHAT MESSAGES ===== */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #F8FAFC;
}

/* Scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #DCE3E7;
    border-radius: 4px;
}

/* ===== MESSAGE BUBBLES ===== */
.message {
    display: flex;
    flex-direction: column;
    animation: message-in 0.3s ease-out;
}

.message.assistant {
    align-items: flex-start;
}

.message.user {
    align-items: flex-end;
}

@keyframes message-in {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.message.assistant .message-bubble {
    background: #FFFFFF;
    color: #1A242B;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid #E8ECF0;
    border-bottom-left-radius: 4px;
}

.message.user .message-bubble {
    background: #22AEC7;
    color: #FFFFFF;
    border-bottom-right-radius: 4px;
}

.message-text {
    margin: 0;
}

.message-subtext {
    font-size: 12px;
    color: #5E6870;
    margin: 4px 0 0 0;
}

.message.assistant .message-subtext {
    color: #5E6870;
}

/* ===== TYPING INDICATOR ===== */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DCE3E7;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }
}

/* ===== OPTIONS GRID ===== */
.message.options {
    width: 100%;
    padding: 4px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    background: #FFFFFF;
    border: 1px solid #DCE3E7;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #1A242B;
    text-align: center;
    line-height: 1.2;
    min-height: 64px;
}

.option-btn svg {
    width: 22px;
    height: 22px;
    stroke: #22AEC7;
    flex-shrink: 0;
}

.option-btn:hover {
    border-color: #22AEC7;
    color: #22AEC7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 174, 199, 0.10);
}

.option-btn:active {
    transform: scale(0.97);
}

.option-btn:focus-visible {
    outline: 2px solid #22AEC7;
    outline-offset: 2px;
}

.option-btn.selected {
    background: #22AEC7;
    border-color: #22AEC7;
    color: #FFFFFF;
}

.option-btn.selected svg {
    stroke: #FFFFFF;
}

/* ===== CHAT INPUT ===== */
.chat-input-area {
    padding: 12px 16px 16px 16px;
    border-top: 1px solid #E8ECF0;
    background: #FFFFFF;
    flex-shrink: 0;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F7FAFC;
    border: 1px solid #E8ECF0;
    border-radius: 10px;
    padding: 4px 4px 4px 12px;
    transition: border-color 0.2s ease-out;
}

.chat-input-wrapper:focus-within {
    border-color: #22AEC7;
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1A242B;
    outline: none;
}

.chat-input::placeholder {
    color: #A0AAB5;
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: #22AEC7;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send svg {
    width: 18px;
    height: 18px;
}

.chat-send:hover {
    background: #1a9bb3;
    transform: scale(1.04);
}

.chat-send:active {
    transform: scale(0.95);
}

.chat-send:focus-visible {
    outline: 2px solid #22AEC7;
    outline-offset: 2px;
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE ===== */
/* ================================================================ */
@media screen and (max-width: 768px) {
    .chat-launcher {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .chat-launcher svg {
        width: 24px;
        height: 24px;
    }

    .chat-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        bottom: auto;
        right: auto;
        background: #FFFFFF;
        box-shadow: none;
    }

    .chat-header {
        padding: 14px 16px;
        border-radius: 0;
    }

    .chat-logo {
        width: 36px;
        height: 36px;
    }

    .chat-brand-name {
        font-size: 14px;
    }

    .chat-brand-sub {
        font-size: 10px;
    }

    .chat-status {
        font-size: 10px;
    }

    .chat-messages {
        padding: 16px;
        gap: 10px;
    }

    .options-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .option-btn {
        padding: 10px 6px;
        font-size: 10px;
        min-height: 56px;
    }

    .option-btn svg {
        width: 20px;
        height: 20px;
    }

    .message-bubble {
        font-size: 13px;
        padding: 10px 14px;
    }

    .chat-input-area {
        padding: 10px 12px 12px 12px;
    }

    .chat-input {
        font-size: 13px;
        padding: 6px 0;
    }

    .chat-send {
        width: 36px;
        height: 36px;
    }

    .chat-send svg {
        width: 16px;
        height: 16px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .chat-launcher {
        bottom: 14px;
        right: 14px;
        width: 50px;
        height: 50px;
    }

    .chat-launcher svg {
        width: 22px;
        height: 22px;
    }

    .chat-header {
        padding: 12px 14px;
    }

    .chat-logo {
        width: 32px;
        height: 32px;
    }

    .chat-brand-name {
        font-size: 13px;
    }

    .chat-brand-sub {
        font-size: 9px;
    }

    .chat-messages {
        padding: 12px;
        gap: 8px;
    }

    .options-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .option-btn {
        padding: 8px 4px;
        font-size: 9px;
        min-height: 50px;
        border-radius: 8px;
    }

    .option-btn svg {
        width: 18px;
        height: 18px;
    }

    .message-bubble {
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 10px;
    }

    .chat-input-area {
        padding: 8px 10px 10px 10px;
    }

    .chat-input-wrapper {
        padding: 2px 2px 2px 10px;
    }

    .chat-input {
        font-size: 12px;
        padding: 6px 0;
    }

    .chat-send {
        width: 34px;
        height: 34px;
    }

    .chat-send svg {
        width: 15px;
        height: 15px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .options-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .option-btn {
        padding: 6px 4px;
        font-size: 8px;
        min-height: 44px;
        gap: 4px;
    }

    .option-btn svg {
        width: 16px;
        height: 16px;
    }

    .chat-messages {
        padding: 10px;
    }

    .message-bubble {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ================================================================ */
/* ===== REDUCED MOTION ===== */
/* ================================================================ */
@media (prefers-reduced-motion: reduce) {
    .chat-window {
        transition: none;
    }

    .message {
        animation: none;
    }

    .option-btn {
        transition: none;
    }

    .launcher-pulse {
        animation: none;
        display: none;
    }

    .status-dot {
        animation: none;
    }

    .typing-indicator span {
        animation: none;
    }
}

/* ===== PRODUCT FOOTER ===== */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 14px 14px;
    border-top: 1px solid #F0F2F4;
    margin-top: 6px;
}

.product-footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-arrow {
    font-size: 16px;
    color: #22AEC7;
    transition: transform 0.22s ease-out;
    font-weight: 600;
}

/* ===== VIEW PRODUCT BUTTON ===== */
.btn-view-product {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #35414A;
    background: #F7FAFC;
    border: 1px solid #E5E9EC;
    border-radius: 4px;
    padding: 4px 10px 4px 8px;
    text-decoration: none;
    transition: all 0.25s ease-out;
}

.btn-view-product svg {
    width: 14px;
    height: 14px;
    stroke: #35414A;
    transition: all 0.25s ease-out;
}

.btn-view-product:hover {
    background: #22AEC7;
    border-color: #22AEC7;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 174, 199, 0.20);
}

.btn-view-product:hover svg {
    stroke: #FFFFFF;
}

.btn-view-product:focus-visible {
    outline: 2px solid #22AEC7;
    outline-offset: 2px;
}

/* ===== ELGi BUTTON - ORANGE/RED BRAND COLORS ===== */
.btn-elgi-card {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #FFFFFF;
    background: #E35205;
    border: 1px solid #E35205;
    border-radius: 4px;
    padding: 4px 10px 4px 8px;
    text-decoration: none;
    transition: all 0.25s ease-out;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.elgi-icon {
    width: 13px;
    height: 13px;
    transition: all 0.25s ease-out;
    flex-shrink: 0;
    stroke: #FFFFFF;
}

.elgi-text {
    transition: all 0.25s ease-out;
}

.btn-elgi-card:hover {
    background: #C44A04;
    border-color: #C44A04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 82, 5, 0.30);
}

.btn-elgi-card:hover .elgi-icon {
    stroke: #FFFFFF;
}

.btn-elgi-card:focus-visible {
    outline: 2px solid #E35205;
    outline-offset: 2px;
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .product-footer {
        padding: 8px 12px 12px 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .product-footer-left {
        justify-content: space-between;
        width: 100%;
    }

    .btn-view-product {
        font-size: 10px;
        padding: 3px 8px 3px 6px;
        flex: 1;
        justify-content: center;
    }

    .btn-view-product svg {
        width: 13px;
        height: 13px;
    }

    .btn-elgi-card {
        font-size: 9px;
        padding: 3px 8px 3px 6px;
        flex: 1;
        justify-content: center;
    }

    .elgi-icon {
        width: 12px;
        height: 12px;
    }

    .product-arrow {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .product-footer {
        padding: 6px 10px 10px 10px;
        gap: 6px;
    }

    .btn-view-product {
        font-size: 9px;
        padding: 2px 6px 2px 5px;
        gap: 3px;
    }

    .btn-view-product svg {
        width: 11px;
        height: 11px;
    }

    .btn-elgi-card {
        font-size: 8px;
        padding: 2px 6px 2px 5px;
        gap: 3px;
    }

    .elgi-icon {
        width: 10px;
        height: 10px;
    }
}

/* ================================================================ */
/* ===== BENEFITS STRIP - MINIMAL VERSION ===== */
/* ================================================================ */

.benefits-strip-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 36px;
}

.benefit-item-minimal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 4px;
    transition: all 0.3s ease-out;
}

.benefit-icon-wrapper-minimal {
    flex-shrink: 0;
}

.benefit-icon-minimal {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease-out;
}

.benefit-content-minimal {
    display: flex;
    flex-direction: column;
}

.benefit-title-minimal {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    transition: color 0.3s ease-out;
    text-transform: uppercase;
}

.benefit-desc-minimal {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

/* ===== BENEFIT HOVER ===== */
.benefit-item-minimal:hover .benefit-icon-minimal {
    transform: scale(1.06);
}

.benefit-item-minimal:hover .benefit-title-minimal {
    color: #22AEC7;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET ===== */
/* ================================================================ */
@media screen and (max-width: 1100px) {
    .benefits-strip-minimal {
        gap: 16px;
        padding-top: 30px;
    }

    .benefit-icon-minimal {
        width: 28px;
        height: 28px;
    }

    .benefit-title-minimal {
        font-size: 10px;
    }

    .benefit-desc-minimal {
        font-size: 11px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .benefits-strip-minimal {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        padding-top: 28px;
    }

    .benefit-item-minimal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 0;
    }

    .benefit-icon-minimal {
        width: 30px;
        height: 30px;
    }

    .benefit-title-minimal {
        font-size: 10px;
    }

    .benefit-desc-minimal {
        font-size: 11px;
        text-align: center;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .benefits-strip-minimal {
        gap: 16px 12px;
        padding-top: 24px;
    }

    .benefit-icon-minimal {
        width: 26px;
        height: 26px;
    }

    .benefit-title-minimal {
        font-size: 9px;
        letter-spacing: 0.3px;
    }

    .benefit-desc-minimal {
        font-size: 10px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .benefits-strip-minimal {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit-item-minimal {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 12px;
    }

    .benefit-desc-minimal {
        text-align: left;
    }
}

/* ================================================================ */
/* ===== OUR TECHNOLOGY PARTNERS SECTION ===== */
/* ================================================================ */

.partners-technology-section {
    width: 100%;
    background: #FFFFFF;
    padding: 100px 0 80px 0;
    position: relative;
    z-index: 1;
}

.partners-tech-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* ===== TOP LABEL ===== */
.partners-tech-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.partners-tech-label {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #22AEC7;
    white-space: nowrap;
}

.partners-tech-label-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: rgba(34, 174, 199, 0.30);
}

/* ===== HEADING ===== */
.partners-tech-heading {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    text-align: center;
    color: #1A242B;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.partners-tech-heading .teal-accent {
    color: #22AEC7;
}

/* ===== DESCRIPTION ===== */
.partners-tech-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
    color: #5E6870;
    max-width: 820px;
    margin: 0 auto 56px auto;
}

/* ===== BRAND CARDS ===== */
.partners-tech-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 64px;
}

/* ===== BRAND CARD ===== */
.brand-card {
    position: relative;
    border-radius: 20px;
    padding: 40px 40px 32px 40px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid;
}

.brand-card-elgi {
    background: linear-gradient(135deg, #F8FAFC 0%, #F0F4F8 100%);
    border-color: rgba(34, 174, 199, 0.25);
}

.brand-card-ivys {
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2F6 100%);
    border-color: rgba(34, 174, 199, 0.20);
}

.brand-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 45%;
    max-width: 340px;
}

/* ===== BRAND LOGO ===== */
.brand-logo-wrapper {
    margin-bottom: 18px;
}

.brand-logo {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

/* ===== BRAND DIVIDER ===== */
.brand-divider {
    width: 40px;
    height: 2px;
    background: #22AEC7;
    margin-bottom: 18px;
    opacity: 0.6;
    transition: all 0.3s ease-out;
}

/* ===== BRAND HEADING ===== */
.brand-heading {
    display: flex;
    flex-direction: column;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px 0;
}

.brand-heading-teal {
    color: #22AEC7;
}

.brand-heading-white {
    color: #1A242B;
}

/* ===== BRAND DESCRIPTION ===== */
.brand-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5E6870;
    max-width: 300px;
    margin: 0 0 22px 0;
}

/* ===== BRAND CTA ===== */
.brand-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #22AEC7;
    text-decoration: none;
    transition: all 0.3s ease-out;
    width: fit-content;
    padding: 12px 24px;
    border: 1.5px solid rgba(34, 174, 199, 0.30);
    border-radius: 12px;
    background: rgba(34, 174, 199, 0.05);
}

.brand-cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease-out;
}

/* ================================================================ */
/* ===== BRAND PRODUCT IMAGE - CLEAN COMPOSITION ===== */
/* ================================================================ */

/* ELGi - Perfectly positioned, no overlap */
.brand-card-elgi .brand-product-image {
    position: absolute;
    bottom: 8%;
    right: 4%;
    width: 52%;
    height: 62%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
}

.brand-card-elgi .brand-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 55% 100%;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.06));
}

/* IVYS - Larger, balanced, no overlap */
.brand-card-ivys .brand-product-image {
    position: absolute;
    bottom: 6%;
    right: 2%;
    width: 48%;
    height: 64%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
}

.brand-card-ivys .brand-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 100%;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 8px 35px rgba(0, 0, 0, 0.08));
    transform: scale(1.04);
}

/* ================================================================ */
/* ===== HOVER EFFECTS - PREMIUM & SUBTLE ===== */
/* ================================================================ */

.brand-card:hover {
    transform: translateY(-4px);
    border-color: #22AEC7;
    box-shadow: 0 16px 60px rgba(34, 174, 199, 0.10);
}

.brand-card-elgi:hover .brand-product-img {
    transform: translate3d(-4px, -6px, 0) scale(1.03);
}

.brand-card-ivys:hover .brand-product-img {
    transform: translate3d(-4px, -6px, 0) scale(1.05);
}

.brand-card:hover .brand-cta {
    background: #22AEC7;
    color: #FFFFFF;
    border-color: #22AEC7;
    box-shadow: 0 4px 20px rgba(34, 174, 199, 0.25);
}

.brand-card:hover .brand-cta-arrow {
    transform: translateX(6px);
}

.brand-card:hover .brand-divider {
    opacity: 1;
    width: 56px;
}

/* ================================================================ */
/* ===== BENEFITS STRIP ===== */
/* ================================================================ */

.benefits-strip-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(34, 174, 199, 0.12);
    padding-top: 36px;
}

.benefit-item-minimal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 4px;
    transition: all 0.3s ease-out;
}

.benefit-icon-wrapper-minimal {
    flex-shrink: 0;
}

.benefit-icon-minimal {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease-out;
}

.benefit-content-minimal {
    display: flex;
    flex-direction: column;
}

.benefit-title-minimal {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #1A242B;
    letter-spacing: 0.5px;
    transition: color 0.3s ease-out;
    text-transform: uppercase;
}

.benefit-desc-minimal {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    color: #5E6870;
    line-height: 1.3;
}

.benefit-item-minimal:hover .benefit-icon-minimal {
    transform: scale(1.06);
}

.benefit-item-minimal:hover .benefit-title-minimal {
    color: #22AEC7;
}

/* ================================================================ */
/* ===== RESPONSIVE - TABLET (768px - 1100px) ===== */
/* ================================================================ */
@media screen and (max-width: 1100px) {
    .partners-technology-section {
        padding: 80px 0 60px 0;
    }

    .partners-tech-container {
        padding: 0 28px;
    }

    .partners-tech-heading {
        font-size: clamp(36px, 4vw, 44px);
    }

    .partners-tech-description {
        font-size: 16px;
        max-width: 680px;
        margin-bottom: 44px;
    }

    .brand-card {
        padding: 32px 28px 28px 28px;
        min-height: 380px;
    }

    .brand-card-inner {
        width: 48%;
        max-width: 280px;
    }

    .brand-card-elgi .brand-product-image {
        width: 48%;
        height: 58%;
        bottom: 10%;
        right: 3%;
    }

    .brand-card-ivys .brand-product-image {
        width: 44%;
        height: 60%;
        bottom: 8%;
        right: 1%;
    }

    .brand-card-ivys .brand-product-img {
        transform: scale(1.02);
    }

    .brand-logo {
        height: 38px;
        max-width: 140px;
    }

    .brand-heading {
        font-size: clamp(20px, 2vw, 24px);
    }

    .brand-description {
        font-size: 13px;
        max-width: 260px;
    }

    .benefits-strip-minimal {
        gap: 16px;
        padding-top: 30px;
    }

    .benefit-icon-minimal {
        width: 28px;
        height: 28px;
    }

    .benefit-title-minimal {
        font-size: 10px;
    }

    .benefit-desc-minimal {
        font-size: 11px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - MOBILE (up to 767px) ===== */
/* ================================================================ */
@media screen and (max-width: 767px) {
    .partners-technology-section {
        padding: 60px 0 48px 0;
    }

    .partners-tech-container {
        padding: 0 20px;
    }

    .partners-tech-label-wrapper {
        gap: 12px;
        margin-bottom: 24px;
    }

    .partners-tech-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .partners-tech-label-line {
        max-width: 40px;
    }

    .partners-tech-heading {
        font-size: clamp(30px, 6vw, 36px);
        margin-bottom: 16px;
    }

    .partners-tech-description {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 36px;
        padding: 0 8px;
    }

    .partners-tech-description br {
        display: none;
    }

    .partners-tech-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .brand-card {
        padding: 28px 24px 24px 24px;
        min-height: auto;
        border-radius: 16px;
    }

    .brand-card-inner {
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    /* ===== MOBILE - IMAGES AT TOP ===== */
    .brand-card-elgi .brand-product-image,
    .brand-card-ivys .brand-product-image {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 160px;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-top: 12px;
        order: -1;
    }

    .brand-card-elgi .brand-product-img,
    .brand-card-ivys .brand-product-img {
        width: 60%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: none !important;
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.05));
    }

    .brand-card-ivys .brand-product-img {
        width: 65%;
    }

    .brand-logo {
        height: 34px;
        max-width: 130px;
    }

    .brand-divider {
        width: 32px;
        margin-bottom: 14px;
    }

    .brand-heading {
        font-size: clamp(20px, 4.5vw, 24px);
    }

    .brand-description {
        font-size: 13px;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .brand-description br {
        display: none;
    }

    .brand-cta {
        font-size: 13px;
        padding: 10px 20px;
        border-radius: 10px;
    }

    .brand-card:hover {
        transform: translateY(-3px);
    }

    .brand-card-elgi:hover .brand-product-img,
    .brand-card-ivys:hover .brand-product-img {
        transform: scale(1.02) !important;
    }

    .benefits-strip-minimal {
        grid-template-columns: 1fr 1fr;
        gap: 16px 20px;
        padding-top: 28px;
    }

    .benefit-item-minimal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 0;
    }

    .benefit-icon-minimal {
        width: 28px;
        height: 28px;
    }

    .benefit-title-minimal {
        font-size: 10px;
    }

    .benefit-desc-minimal {
        font-size: 11px;
        text-align: center;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
/* ================================================================ */
@media screen and (max-width: 480px) {
    .partners-technology-section {
        padding: 48px 0 36px 0;
    }

    .partners-tech-container {
        padding: 0 14px;
    }

    .partners-tech-heading {
        font-size: clamp(24px, 5vw, 28px);
    }

    .partners-tech-description {
        font-size: 13px;
        padding: 0 4px;
    }

    .brand-card {
        padding: 20px 16px 18px 16px;
        border-radius: 14px;
    }

    .brand-card-elgi .brand-product-image,
    .brand-card-ivys .brand-product-image {
        height: 130px;
        margin-top: 8px;
    }

    .brand-card-elgi .brand-product-img {
        width: 55%;
    }

    .brand-card-ivys .brand-product-img {
        width: 60%;
    }

    .brand-logo {
        height: 28px;
        max-width: 110px;
    }

    .brand-divider {
        width: 28px;
        height: 1.5px;
        margin-bottom: 10px;
    }

    .brand-heading {
        font-size: clamp(18px, 4vw, 20px);
    }

    .brand-description {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .brand-cta {
        font-size: 12px;
        padding: 8px 16px;
        border-radius: 8px;
    }

    .benefits-strip-minimal {
        grid-template-columns: 1fr 1fr;
        gap: 12px 14px;
        padding-top: 20px;
    }

    .benefit-icon-minimal {
        width: 24px;
        height: 24px;
    }

    .benefit-title-minimal {
        font-size: 9px;
        letter-spacing: 0.3px;
    }

    .benefit-desc-minimal {
        font-size: 9px;
    }
}

/* ================================================================ */
/* ===== RESPONSIVE - EXTRA SMALL (375px) ===== */
/* ================================================================ */
@media screen and (max-width: 375px) {
    .brand-card {
        padding: 16px 12px 14px 12px;
        border-radius: 12px;
    }

    .brand-card-elgi .brand-product-image,
    .brand-card-ivys .brand-product-image {
        height: 100px;
        margin-top: 6px;
    }

    .brand-card-elgi .brand-product-img {
        width: 50%;
    }

    .brand-card-ivys .brand-product-img {
        width: 55%;
    }

    .brand-logo {
        height: 24px;
        max-width: 90px;
    }

    .brand-divider {
        width: 24px;
        margin-bottom: 8px;
    }

    .brand-heading {
        font-size: 16px;
    }

    .brand-description {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .brand-cta {
        font-size: 10px;
        padding: 6px 14px;
        border-radius: 6px;
    }

    .benefits-strip-minimal {
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
        padding-top: 16px;
    }

    .benefit-icon-minimal {
        width: 20px;
        height: 20px;
    }

    .benefit-title-minimal {
        font-size: 8px;
    }

    .benefit-desc-minimal {
        font-size: 8px;
    }
}

/* ================================================================ */
/* ===== SCROLL REVEAL ===== */
/* ================================================================ */
.partners-technology-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.partners-technology-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.partners-tech-label-wrapper {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.partners-technology-section.visible .partners-tech-label-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.partners-tech-heading {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.partners-technology-section.visible .partners-tech-heading {
    opacity: 1;
    transform: translateY(0);
}

.partners-tech-description {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.partners-technology-section.visible .partners-tech-description {
    opacity: 1;
    transform: translateY(0);
}

.brand-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.partners-technology-section.visible .brand-card {
    opacity: 1;
    transform: translateY(0);
}

.partners-technology-section.visible .brand-card:nth-child(1) {
    transition-delay: 0.10s;
}

.partners-technology-section.visible .brand-card:nth-child(2) {
    transition-delay: 0.20s;
}

.benefit-item-minimal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.partners-technology-section.visible .benefit-item-minimal {
    opacity: 1;
    transform: translateY(0);
}

.partners-technology-section.visible .benefit-item-minimal:nth-child(1) {
    transition-delay: 0.10s;
}

.partners-technology-section.visible .benefit-item-minimal:nth-child(2) {
    transition-delay: 0.18s;
}

.partners-technology-section.visible .benefit-item-minimal:nth-child(3) {
    transition-delay: 0.26s;
}

.partners-technology-section.visible .benefit-item-minimal:nth-child(4) {
    transition-delay: 0.34s;
}

/* ================================================================ */
/* ===== REDUCED MOTION ===== */
/* ================================================================ */
@media (prefers-reduced-motion: reduce) {

    .partners-technology-section,
    .partners-tech-label-wrapper,
    .partners-tech-heading,
    .partners-tech-description,
    .brand-card,
    .benefit-item-minimal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .brand-card:hover {
        transform: none;
    }

    .brand-card-elgi:hover .brand-product-img,
    .brand-card-ivys:hover .brand-product-img {
        transform: none !important;
    }

    .brand-card:hover .brand-cta-arrow {
        transform: none;
    }

    .benefit-item-minimal:hover .benefit-icon-minimal {
        transform: none;
    }
}


/* ===== IVYS IMAGE - LARGER WITH RESPONSIVE ===== */
.brand-card-ivys .brand-product-image {
    width: clamp(48%, 62%, 68%) !important;
    height: clamp(64%, 76%, 80%) !important;
    bottom: clamp(2%, 4%, 6%) !important;
    right: clamp(-4%, -2%, 0%) !important;
}

.brand-card-ivys .brand-product-img {
    transform: scale(clamp(1.04, 1.12, 1.16)) !important;
}

.brand-card-ivys:hover .brand-product-img {
    transform: scale(clamp(1.06, 1.15, 1.18)) translate3d(-4px, -6px, 0) !important;
}

/* ===== MOBILE RESET ===== */
@media screen and (max-width: 767px) {
    .brand-card-ivys .brand-product-image {
        position: relative !important;
        width: 100% !important;
        height: 160px !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 12px !important;
        order: -1 !important;
    }

    .brand-card-ivys .brand-product-img {
        width: 65% !important;
        height: 100% !important;
        transform: none !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .brand-card-ivys:hover .brand-product-img {
        transform: scale(1.02) !important;
    }
}

@media screen and (max-width: 480px) {
    .brand-card-ivys .brand-product-image {
        height: 130px !important;
        margin-top: 8px !important;
    }

    .brand-card-ivys .brand-product-img {
        width: 60% !important;
    }
}

@media screen and (max-width: 375px) {
    .brand-card-ivys .brand-product-image {
        height: 100px !important;
        margin-top: 6px !important;
    }

    .brand-card-ivys .brand-product-img {
        width: 55% !important;
    }
}

/* ================================================================ */
/* ===== BOTH IMAGES - SAME SIZE ON MOBILE ===== */
/* ================================================================ */

@media screen and (max-width: 767px) {

    .brand-card-elgi .brand-product-image,
    .brand-card-ivys .brand-product-image {
        height: 260px !important;
        margin-top: 4px !important;
        padding: 0 !important;
    }

    .brand-card-elgi .brand-product-img,
    .brand-card-ivys .brand-product-img {
        width: 85% !important;
        height: 100% !important;
        transform: scale(1.08) !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .brand-card-elgi:hover .brand-product-img,
    .brand-card-ivys:hover .brand-product-img {
        transform: scale(1.10) !important;
    }
}

@media screen and (max-width: 480px) {

    .brand-card-elgi .brand-product-image,
    .brand-card-ivys .brand-product-image {
        height: 220px !important;
        margin-top: 2px !important;
    }

    .brand-card-elgi .brand-product-img,
    .brand-card-ivys .brand-product-img {
        width: 82% !important;
        transform: scale(1.06) !important;
    }

    .brand-card-elgi:hover .brand-product-img,
    .brand-card-ivys:hover .brand-product-img {
        transform: scale(1.08) !important;
    }
}

@media screen and (max-width: 375px) {

    .brand-card-elgi .brand-product-image,
    .brand-card-ivys .brand-product-image {
        height: 180px !important;
    }

    .brand-card-elgi .brand-product-img,
    .brand-card-ivys .brand-product-img {
        width: 78% !important;
        transform: scale(1.05) !important;
    }

    .brand-card-elgi:hover .brand-product-img,
    .brand-card-ivys:hover .brand-product-img {
        transform: scale(1.07) !important;
    }
}

@media screen and (max-width: 320px) {

    .brand-card-elgi .brand-product-image,
    .brand-card-ivys .brand-product-image {
        height: 150px !important;
    }

    .brand-card-elgi .brand-product-img,
    .brand-card-ivys .brand-product-img {
        width: 75% !important;
        transform: scale(1.04) !important;
    }
}


/* ================================================================ */
/* ===== ADDRESS - PERFECT 2 LINES ON DESKTOP ===== */
/* ================================================================ */

.footer-contact-list li:last-child {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.footer-contact-list li:last-child span {
    display: block !important;
    max-width: 200px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
}

.footer-contact-list li:last-child .contact-icon {
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

/* Desktop only */
@media screen and (min-width: 992px) {
    .footer-contact-list li:last-child span {
        max-width: 220px !important;
        font-size: 13px !important;
    }
}

/* Tablet */
@media screen and (max-width: 991px) and (min-width: 768px) {
    .footer-contact-list li:last-child span {
        max-width: 160px !important;
        font-size: 12px !important;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    .footer-contact-list li:last-child {
        justify-content: center !important;
    }

    .footer-contact-list li:last-child span {
        max-width: 100% !important;
        text-align: center !important;
        font-size: 13px !important;
    }
}