/**
 * Metal America Components CSS
 * Based on approved HTML design v2
 */

:root {
    --color-black: #0d0d0d;
    --color-dark: #1a1a1a;
    --color-dark-alt: #222222;
    --color-medium-gray: #666666;
    --color-light-gray: #999999;
    --color-border: #333333;
    --color-white: #ffffff;
    --color-off-white: #f5f5f7;
    --color-light-bg: #f5f5f7;
    --color-red: #dc2626;
    --color-accent: #0071e3;
    --color-text: #1d1d1f;
    --color-text-muted: rgba(29,29,31,0.6);
    --font-main: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1400px;
    --container-padding: 48px;
}

/* Reset for MA elements */
[class^="ma-"],
[class^="ma-"] * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[class^="ma-"] a {
    text-decoration: none;
    color: inherit;
}

[class^="ma-"] img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Buttons - Square (no border-radius)
   ========================================================================== */
.ma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.ma-btn--primary {
    background: var(--color-white);
    color: var(--color-black);
}

.ma-btn--primary:hover {
    background: #e5e5e5;
}

.ma-btn--outline-white {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.ma-btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
}

.ma-btn--dark {
    background: var(--color-black);
    color: var(--color-white);
}

.ma-btn--dark:hover {
    background: #333;
}

.ma-btn--outline-dark {
    background: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

.ma-btn--outline-dark:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.ma-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--color-black);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-main);
}

.ma-topbar__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ma-topbar__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ma-topbar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.ma-topbar__item:hover {
    color: var(--color-white);
}

.ma-topbar__item svg {
    width: 14px;
    height: 14px;
}

.ma-topbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ma-topbar__cta {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-right: 8px;
}

.ma-topbar__link {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    padding: 0 12px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.ma-topbar__link:first-of-type {
    border-left: none;
    padding-left: 0;
}

.ma-topbar__link:hover {
    color: var(--color-white);
}

/* Top Bar Responsive */
@media (max-width: 1024px) {
    .ma-topbar__inner {
        padding: 10px 24px;
    }
    .ma-topbar__right {
        display: none;
    }
}

@media (max-width: 640px) {
    .ma-topbar__left {
        gap: 16px;
    }
    .ma-topbar__item span {
        display: none;
    }
}

/* ==========================================================================
   Navigation - Sticky with hide/show on scroll
   ========================================================================== */
:root {
    --topbar-height: 38px;
}

.ma-nav {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: var(--font-main);
    background: transparent;
    transition: transform 0.3s ease, background 0.3s ease, padding 0.3s ease, top 0.3s ease;
}

/* Hidden state (scrolling down) */
.ma-nav--hidden {
    transform: translateY(-100%);
}

/* Scrolled state (past hero - minified with solid bg) */
.ma-nav--scrolled {
    top: var(--topbar-height);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.ma-nav--scrolled .ma-nav__inner {
    padding: 14px 48px;
}

.ma-nav--scrolled .ma-nav__logo img {
    height: 40px;
}

.ma-nav--scrolled .ma-nav__logo-text {
    font-size: 16px;
}

.ma-nav--solid {
    background: var(--color-black);
}

.ma-nav__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    gap: 60px;
    transition: padding 0.3s ease;
}

.ma-nav__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ma-nav__logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height 0.3s ease, filter 0.3s ease;
}

.ma-nav__logo-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.15em;
    white-space: nowrap;
    text-transform: uppercase;
}

.ma-nav__logo-text strong {
    font-weight: 700;
}

.ma-nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.ma-nav__link {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    opacity: 1 !important;
}

.ma-nav__link:hover {
    color: rgba(255,255,255,0.8) !important;
}

.ma-nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ma-nav__phone {
    display: none;
}

.ma-nav__cta {
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    border: 1px solid #ffffff;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ma-nav__cta:hover {
    background: rgba(255,255,255,0.25);
    border-color: #ffffff;
    color: #ffffff !important;
}

.ma-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.ma-nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.ma-nav--open .ma-nav__toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ma-nav--open .ma-nav__toggle span:nth-child(2) {
    opacity: 0;
}

.ma-nav--open .ma-nav__toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.ma-nav__mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-black);
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ma-nav--open .ma-nav__mobile {
    display: block;
}

.ma-nav__mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ma-nav__mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ma-nav__mobile-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

/* Nav Responsive */
@media (max-width: 1024px) {
    .ma-nav__inner {
        padding: 20px 24px;
    }
    .ma-nav__menu {
        display: none;
    }
    .ma-nav__phone {
        display: none;
    }
    .ma-nav__cta {
        display: none;
    }
    .ma-nav__toggle {
        display: flex;
    }
}

/* ==========================================================================
   Hero Section - Two Column Layout
   ========================================================================== */
.ma-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    font-family: var(--font-main);
}

.ma-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #2a2a2a;
}

.ma-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.ma-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ma-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 140px 48px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.ma-hero__left {
    flex: 1;
    max-width: 580px;
}

.ma-hero__right {
    flex-shrink: 0;
}

.ma-hero__title {
    font-size: 44px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.ma-hero__subtitle {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 10px;
}

.ma-hero__serving {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Location Cards - Right Column */
.ma-hero__locations-wrap {
    margin-bottom: 0;
}

.ma-hero__locations-header {
    font-size: 11px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.ma-hero__locations-header-main {
    font-weight: 600;
}

.ma-hero__locations-header-sub {
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-left: 8px;
}

.ma-hero__locations-header-sub::before {
    content: '—';
    margin-right: 8px;
}

.ma-hero__locations {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ma-hero__location {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 16px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    min-width: 220px;
}

.ma-hero__location:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.ma-hero__location h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
}

.ma-hero__location-hours {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin: 0 0 3px 0;
}

.ma-hero__location-address {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.ma-hero__buttons {
    display: flex;
    gap: 12px;
}

.ma-hero__buttons .ma-btn {
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ma-hero__buttons .ma-btn--primary {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-white);
}

.ma-hero__buttons .ma-btn--primary:hover {
    background: rgba(255,255,255,0.9);
}

.ma-hero__buttons .ma-btn--outline-white {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ma-hero__buttons .ma-btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .ma-hero__container {
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 24px 60px;
        gap: 40px;
    }
    .ma-hero__left {
        max-width: 100%;
    }
    .ma-hero__right {
        width: 100%;
    }
    .ma-hero__title {
        font-size: 36px;
    }
    .ma-hero__subtitle {
        font-size: 14px;
    }
    .ma-hero__locations {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .ma-hero__location {
        min-width: auto;
        flex: 1;
        min-width: 180px;
    }
    .ma-nav__inner {
        padding: 20px 24px;
    }
    .ma-nav--scrolled .ma-nav__inner {
        padding: 14px 24px;
    }
}

@media (max-width: 640px) {
    .ma-hero__container {
        padding: 100px 20px 50px;
    }
    .ma-hero__title {
        font-size: 28px;
    }
    .ma-hero__subtitle {
        font-size: 13px;
    }
    .ma-hero__buttons {
        flex-direction: column;
    }
    .ma-hero__buttons .ma-btn {
        width: 100%;
        justify-content: center;
    }
    .ma-hero__locations {
        flex-direction: column;
    }
    .ma-hero__location {
        width: 100%;
    }
}

/* ==========================================================================
   Roll Forming Section - Full Width Carousel with Floating Content
   ========================================================================== */
.ma-rollform {
    position: relative;
    min-height: 620px;
    background: var(--color-off-white);
    font-family: var(--font-main);
    overflow: hidden;
}

.ma-rollform__container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 10;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.ma-rollform__text {
    padding: 48px 52px;
    background: var(--color-white);
    max-width: 420px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.ma-rollform__title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

.ma-rollform__subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--color-medium-gray);
    margin-bottom: 8px;
    font-weight: 400;
}

.ma-rollform__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 20px;
}

.ma-rollform__desc:last-of-type {
    margin-bottom: 28px;
}

.ma-rollform__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 350px;
    pointer-events: auto;
    position: relative;
    z-index: 20;
}

.ma-rollform__info {
    text-align: right;
}

.ma-rollform__product-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-black);
    letter-spacing: -0.01em;
}

.ma-rollform__product-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.ma-rollform__product-link:hover {
    color: var(--color-black);
}

.ma-rollform__nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.ma-rollform__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-white);
}

.ma-rollform__nav-btn:hover {
    background: #333;
}

.ma-rollform__nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Carousel - overlays content */
.ma-rollform__carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 15;
    overflow: visible;
    pointer-events: none;
}

.ma-rollform__track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.ma-rollform__slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
    padding-left: calc(30% + 60px);
}

.ma-rollform__slide img {
    width: calc(70vw - 60px);
    max-width: 1100px;
    max-height: 800px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

/* Roll Forming Responsive */
@media (max-width: 1024px) {
    .ma-rollform {
        min-height: auto;
    }
    .ma-rollform__container {
        flex-direction: column;
        min-height: auto;
        padding: 40px 24px;
        gap: 24px;
        pointer-events: auto;
    }
    .ma-rollform__text {
        padding: 32px 24px;
        max-width: 100%;
    }
    .ma-rollform__right {
        flex-direction: row;
        gap: 24px;
        width: 100%;
        justify-content: space-between;
    }
    .ma-rollform__carousel {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        height: 300px;
        pointer-events: auto;
    }
    .ma-rollform__track {
        pointer-events: auto;
    }
    .ma-rollform__slide {
        height: 300px;
        pointer-events: auto;
        padding-left: 0;
        justify-content: center;
    }
    .ma-rollform__slide img {
        transform: scale(1);
        width: 90%;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .ma-rollform__carousel {
        height: 240px;
    }
    .ma-rollform__slide {
        height: 240px;
    }
    .ma-rollform__nav-btn {
        width: 40px;
        height: 40px;
    }
    .ma-rollform__right {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .ma-rollform__info {
        text-align: center;
    }
    .ma-rollform__nav {
        justify-content: center;
    }
}

/* ==========================================================================
   Benefits Strip - Clean Horizontal
   ========================================================================== */
.ma-benefits {
    background: var(--color-black);
    padding: 32px var(--container-padding);
    border-top: 1px solid rgba(255,255,255,0.1);
    overflow-x: auto;
    font-family: var(--font-main);
}

.ma-benefits__scroll {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    gap: 40px;
    min-width: max-content;
}

.ma-benefits__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    white-space: nowrap;
}

.ma-benefits__item svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.4);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .ma-benefits {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.ma-products {
    padding: 80px var(--container-padding);
    background: var(--color-dark);
    font-family: var(--font-main);
}

.ma-products__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.ma-products__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.ma-products__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.ma-products__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

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

.ma-product-card {
    background: transparent;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.ma-product-card:hover {
    transform: translateY(-4px);
}

.ma-product-card__image {
    aspect-ratio: 16/8;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.ma-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.ma-product-card:hover .ma-product-card__image img {
    transform: scale(1.2);
}

.ma-product-card__info {
    padding: 16px 0;
}

.ma-product-card__name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-white);
}

.ma-product-card__link {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.ma-product-card:hover .ma-product-card__link {
    color: var(--color-white);
}

@media (max-width: 1024px) {
    .ma-products {
        padding: 60px 24px;
    }
    .ma-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ma-products__grid {
        grid-template-columns: 1fr;
    }
    .ma-products__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.ma-gallery {
    background: var(--color-dark);
    padding: 60px var(--container-padding);
    font-family: var(--font-main);
}

.ma-gallery__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.ma-gallery__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.ma-gallery__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
}

.ma-gallery__carousel {
    position: relative;
}

.ma-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.ma-gallery__nav--prev {
    left: 24px;
}

.ma-gallery__nav--next {
    right: 24px;
}

.ma-gallery__nav:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.ma-gallery__nav svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-white);
}

.ma-gallery__slides-wrapper {
    overflow: hidden;
}

.ma-gallery__slides {
    display: flex;
    transition: transform 0.5s ease;
}

.ma-gallery__slide {
    position: relative;
    overflow: hidden;
    max-height: 550px;
    background: #3a3a3a;
    min-width: 100%;
    flex-shrink: 0;
}

.ma-gallery__slide img {
    width: 100%;
    height: 100%;
    max-height: 550px;
    object-fit: cover;
}

.ma-gallery__slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.ma-gallery__slide-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.ma-gallery__slide-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.ma-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.ma-gallery__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.ma-gallery__dot:hover {
    background: rgba(255,255,255,0.5);
}

.ma-gallery__dot--active {
    background: var(--color-white);
}

@media (max-width: 1024px) {
    .ma-gallery {
        padding: 60px 24px;
    }
    .ma-gallery__nav {
        width: 44px;
        height: 44px;
    }
    .ma-gallery__nav--prev {
        left: 16px;
    }
    .ma-gallery__nav--next {
        right: 16px;
    }
    .ma-gallery__nav svg {
        width: 18px;
        height: 18px;
    }
    .ma-gallery__slide,
    .ma-gallery__slide img {
        max-height: 400px;
    }
}

@media (max-width: 640px) {
    .ma-gallery__nav {
        width: 40px;
        height: 40px;
    }
    .ma-gallery__nav--prev {
        left: 12px;
    }
    .ma-gallery__nav--next {
        right: 12px;
    }
    .ma-gallery__slide,
    .ma-gallery__slide img {
        max-height: 300px;
    }
}

/* ==========================================================================
   Why Metal Section
   ========================================================================== */
.ma-why {
    background: var(--color-dark);
    padding: 80px var(--container-padding);
    font-family: var(--font-main);
}

.ma-why__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ma-why__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ma-why__content > p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.ma-why__list {
    list-style: none;
    margin-bottom: 32px;
    columns: 2;
    column-gap: 32px;
}

.ma-why__list li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    break-inside: avoid;
}

.ma-why__list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.4);
}

.ma-why__image {
    overflow: hidden;
    background: #333333;
    min-height: 400px;
}

.ma-why__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .ma-why {
        padding: 60px 24px;
    }
    .ma-why__inner {
        grid-template-columns: 1fr;
    }
    .ma-why__image {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .ma-why__list {
        columns: 1;
    }
}

/* ==========================================================================
   Specialty Finishes Section
   ========================================================================== */
.ma-finishes {
    font-family: var(--font-main);
    overflow: hidden;
    background: var(--color-white);
}

.ma-finishes__inner {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    position: relative;
}

.ma-finishes__image {
    position: relative;
    overflow: hidden;
    /* Extend image to left edge */
    margin-left: calc(-50vw + 50%);
    width: calc(100% + 50vw - 50%);
    background: #404040;
}

.ma-finishes__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ma-finishes__img--active {
    opacity: 1;
}

.ma-finishes__content {
    background: var(--color-white);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ma-finishes__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--color-black);
}

.ma-finish-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 0;
    cursor: pointer;
    transition: var(--transition);
}

.ma-finish-item:first-of-type {
    border-top: 1px solid #e5e5e5;
}

.ma-finish-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ma-finish-item__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.ma-finish-item__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ma-finish-item__icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-medium-gray);
}

.ma-finish-item--active .ma-finish-item__icon {
    transform: rotate(45deg);
}

.ma-finish-item__desc {
    font-size: 13px;
    color: var(--color-medium-gray);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.ma-finish-item--active .ma-finish-item__desc {
    max-height: 150px;
    padding-top: 12px;
}

.ma-finishes__link {
    margin-top: 24px;
    font-size: 13px;
    color: var(--color-black);
    text-decoration: underline;
}

.ma-finishes__link:hover {
    color: var(--color-medium-gray);
}

@media (max-width: 1024px) {
    .ma-finishes__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ma-finishes__image {
        min-height: 400px;
        order: -1;
        margin-left: 0;
        width: 100%;
    }
    .ma-finishes__content {
        padding: 48px 24px;
    }
}

/* ==========================================================================
   Technology/About Section
   ========================================================================== */
.ma-tech {
    padding: 80px var(--container-padding);
    background: var(--color-white);
    font-family: var(--font-main);
}

.ma-tech__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ma-tech__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-medium-gray);
    margin-bottom: 12px;
}

.ma-tech__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--color-black);
}

.ma-tech__subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--color-medium-gray);
    margin-bottom: 24px;
}

.ma-tech__right p {
    font-size: 14px;
    color: var(--color-medium-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ma-tech__right p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .ma-tech {
        padding: 60px 24px;
    }
    .ma-tech__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.ma-contact {
    font-family: var(--font-main);
    overflow: hidden;
    background: var(--color-dark);
}

.ma-contact__inner {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

.ma-contact__form-container {
    background: var(--color-dark);
    padding: 80px 48px;
}

.ma-contact__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.ma-contact__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.ma-contact__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}

.ma-contact__form-wrap h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
}

.ma-contact__image {
    background: #383838;
    position: relative;
    overflow: hidden;
    /* Extend image to right edge */
    margin-right: calc(-50vw + 50%);
    width: calc(100% + 50vw - 50%);
}

.ma-contact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Styling */
.ma-contact .gform_wrapper .gfield {
    margin-bottom: 16px;
}

.ma-contact .gform_wrapper .gfield_label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.ma-contact .gform_wrapper .gfield_required {
    color: var(--color-red);
}

.ma-contact .gform_wrapper input[type="text"],
.ma-contact .gform_wrapper input[type="email"],
.ma-contact .gform_wrapper input[type="tel"],
.ma-contact .gform_wrapper textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 12px 0;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--color-white);
    transition: var(--transition);
    width: 100%;
}

.ma-contact .gform_wrapper input:focus,
.ma-contact .gform_wrapper textarea:focus {
    outline: none;
    border-bottom-color: var(--color-white);
}

.ma-contact .gform_wrapper textarea {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px;
    min-height: 100px;
    resize: vertical;
}

.ma-contact .gform_wrapper .gform_button {
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    padding: 12px 32px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.ma-contact .gform_wrapper .gform_button:hover {
    background: #e5e5e5;
}

@media (max-width: 1024px) {
    .ma-contact__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ma-contact__form-container {
        padding: 48px 24px;
    }
    .ma-contact__image {
        min-height: 400px;
        order: -1;
        margin-right: 0;
        width: 100%;
    }
}

/* ==========================================================================
   Section Header (reusable)
   ========================================================================== */
.ma-section-header {
    margin-bottom: 40px;
    font-family: var(--font-main);
}

.ma-section-header__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-medium-gray);
    margin-bottom: 8px;
}

.ma-section-header__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

.ma-section-header--light .ma-section-header__title {
    color: var(--color-white);
}

.ma-section-header--light .ma-section-header__label {
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Project Showcase Gallery - Grid Layout
   ========================================================================== */
.ma-showcase {
    padding: 80px 0;
    background: var(--color-dark);
    font-family: var(--font-main);
}

.ma-showcase--light {
    background: var(--color-off-white);
}

.ma-showcase__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.ma-showcase__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.ma-showcase__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.ma-showcase--light .ma-showcase__label {
    color: var(--color-medium-gray);
}

.ma-showcase__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.ma-showcase--light .ma-showcase__title {
    color: var(--color-black);
}

.ma-showcase__link {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.ma-showcase__link:hover {
    color: var(--color-white);
}

.ma-showcase--light .ma-showcase__link {
    color: var(--color-medium-gray);
}

.ma-showcase--light .ma-showcase__link:hover {
    color: var(--color-black);
}

/* Grid Layout - Masonry-style */
.ma-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Feature item spans 2 columns */
.ma-showcase__item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.ma-showcase__item {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.ma-showcase__item--featured {
    aspect-ratio: auto;
}

.ma-showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ma-showcase__item:hover img {
    transform: scale(1.05);
}

.ma-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.ma-showcase__item:hover .ma-showcase__overlay {
    opacity: 1;
}

.ma-showcase__item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.ma-showcase__item-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.ma-showcase__item-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.ma-showcase__item:hover .ma-showcase__item-icon {
    opacity: 1;
    transform: translateY(0);
}

.ma-showcase__item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-white);
}

/* 2-column layout option */
.ma-showcase__grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.ma-showcase__grid--2col .ma-showcase__item {
    aspect-ratio: 16/10;
}

/* 4-column layout option */
.ma-showcase__grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.ma-showcase__grid--4col .ma-showcase__item {
    aspect-ratio: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .ma-showcase {
        padding: 60px 0;
    }
    .ma-showcase__inner {
        padding: 0 24px;
    }
    .ma-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ma-showcase__item--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .ma-showcase__grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ma-showcase__grid {
        grid-template-columns: 1fr;
    }
    .ma-showcase__item--featured {
        grid-column: span 1;
    }
    .ma-showcase__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .ma-showcase__grid--2col,
    .ma-showcase__grid--4col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRODUCT PAGE ELEMENTS
   ========================================================================== */

/* ==========================================================================
   MA Product - Hero
   ========================================================================== */
.ma-product-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    font-family: var(--font-main);
    padding-top: 100px;
}

.ma-product-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ma-product-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.ma-product-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ma-product-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ma-product-hero__breadcrumb {
    grid-column: 1 / -1;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: -40px;
}

.ma-product-hero__breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

.ma-product-hero__breadcrumb a:hover {
    color: var(--color-white);
}

.ma-product-hero__breadcrumb span {
    margin: 0 8px;
}

.ma-product-hero__tagline {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.ma-product-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ma-product-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.ma-product-hero__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ma-product-hero__badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    font-size: 12px;
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.ma-product-hero__badge strong {
    font-weight: 600;
}

.ma-product-hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ma-product-hero__buttons .ma-btn {
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ma-product-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ma-product-hero__image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@media (max-width: 1024px) {
    .ma-product-hero {
        min-height: auto;
        padding-top: 80px;
    }
    .ma-product-hero__inner {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 40px;
    }
    .ma-product-hero__title {
        font-size: 36px;
    }
    .ma-product-hero__image {
        order: -1;
    }
    .ma-product-hero__image img {
        max-height: 300px;
    }
}

/* ==========================================================================
   MA Product - Overview
   ========================================================================== */
.ma-product-overview {
    padding: 80px var(--container-padding);
    background: var(--color-white);
    font-family: var(--font-main);
}

.ma-product-overview__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ma-product-overview--image-left .ma-product-overview__image {
    order: -1;
}

.ma-product-overview__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-medium-gray);
    margin-bottom: 12px;
}

.ma-product-overview__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 16px;
}

.ma-product-overview__desc {
    font-size: 15px;
    color: var(--color-medium-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.ma-product-overview__benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ma-product-overview__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.ma-product-overview__benefits li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #22c55e;
    margin-top: 2px;
}

.ma-product-overview__image {
    background: var(--color-off-white);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ma-product-overview__image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .ma-product-overview {
        padding: 60px 24px;
    }
    .ma-product-overview__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ma-product-overview__image {
        order: -1 !important;
    }
}

/* ==========================================================================
   MA Product - Specs
   ========================================================================== */
.ma-product-specs {
    padding: 80px var(--container-padding);
    background: var(--color-off-white);
    font-family: var(--font-main);
}

.ma-product-specs--dark {
    background: var(--color-dark);
}

.ma-product-specs__inner {
    max-width: 800px;
    margin: 0 auto;
}

.ma-product-specs__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 40px;
}

.ma-product-specs--dark .ma-product-specs__title {
    color: var(--color-white);
}

.ma-product-specs__table {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
}

.ma-product-specs--dark .ma-product-specs__table {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.ma-product-specs__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #e5e5e5;
}

.ma-product-specs--dark .ma-product-specs__row {
    border-color: rgba(255,255,255,0.1);
}

.ma-product-specs__row:last-child {
    border-bottom: none;
}

.ma-product-specs__row--alt {
    background: var(--color-off-white);
}

.ma-product-specs--dark .ma-product-specs__row--alt {
    background: rgba(255,255,255,0.03);
}

.ma-product-specs__label {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    border-right: 1px solid #e5e5e5;
}

.ma-product-specs--dark .ma-product-specs__label {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.1);
}

.ma-product-specs__value {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--color-medium-gray);
}

.ma-product-specs--dark .ma-product-specs__value {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 640px) {
    .ma-product-specs {
        padding: 60px 24px;
    }
    .ma-product-specs__row {
        grid-template-columns: 1fr;
    }
    .ma-product-specs__label {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 8px;
    }
    .ma-product-specs--dark .ma-product-specs__label {
        border-color: rgba(255,255,255,0.1);
    }
    .ma-product-specs__value {
        padding-top: 8px;
    }
}

/* ==========================================================================
   MA Product - Features
   ========================================================================== */
.ma-product-features {
    padding: 80px var(--container-padding);
    background: var(--color-white);
    font-family: var(--font-main);
}

.ma-product-features--dark {
    background: var(--color-dark);
}

.ma-product-features__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.ma-product-features__header {
    text-align: center;
    margin-bottom: 48px;
}

.ma-product-features__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-medium-gray);
    margin-bottom: 12px;
}

.ma-product-features--dark .ma-product-features__label {
    color: rgba(255,255,255,0.5);
}

.ma-product-features__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
}

.ma-product-features--dark .ma-product-features__title {
    color: var(--color-white);
}

.ma-product-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ma-product-features__grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.ma-product-features__grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.ma-product-features__item {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-off-white);
    transition: var(--transition);
}

.ma-product-features--dark .ma-product-features__item {
    background: rgba(255,255,255,0.05);
}

.ma-product-features__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ma-product-features__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border-radius: 50%;
}

.ma-product-features--dark .ma-product-features__icon {
    background: var(--color-white);
}

.ma-product-features__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}

.ma-product-features--dark .ma-product-features__icon svg {
    stroke: var(--color-black);
}

.ma-product-features__item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
}

.ma-product-features--dark .ma-product-features__item-title {
    color: var(--color-white);
}

.ma-product-features__item-desc {
    font-size: 13px;
    color: var(--color-medium-gray);
    line-height: 1.6;
}

.ma-product-features--dark .ma-product-features__item-desc {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
    .ma-product-features {
        padding: 60px 24px;
    }
    .ma-product-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ma-product-features__grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ma-product-features__grid,
    .ma-product-features__grid--2col,
    .ma-product-features__grid--4col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MA Product - Applications
   ========================================================================== */
.ma-product-apps {
    padding: 80px var(--container-padding);
    background: var(--color-off-white);
    font-family: var(--font-main);
}

.ma-product-apps--dark {
    background: var(--color-dark);
}

.ma-product-apps__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.ma-product-apps__header {
    text-align: center;
    margin-bottom: 48px;
}

.ma-product-apps__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-medium-gray);
    margin-bottom: 12px;
}

.ma-product-apps--dark .ma-product-apps__label {
    color: rgba(255,255,255,0.5);
}

.ma-product-apps__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.ma-product-apps--dark .ma-product-apps__title {
    color: var(--color-white);
}

.ma-product-apps__desc {
    font-size: 15px;
    color: var(--color-medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.ma-product-apps--dark .ma-product-apps__desc {
    color: rgba(255,255,255,0.6);
}

.ma-product-apps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ma-product-apps__item {
    background: var(--color-white);
    overflow: hidden;
    transition: var(--transition);
}

.ma-product-apps--dark .ma-product-apps__item {
    background: rgba(255,255,255,0.05);
}

.ma-product-apps__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ma-product-apps__item-image {
    aspect-ratio: 16/10;
    background: #e5e5e5;
    overflow: hidden;
}

.ma-product-apps__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ma-product-apps__item:hover .ma-product-apps__item-image img {
    transform: scale(1.05);
}

.ma-product-apps__item-content {
    padding: 20px;
}

.ma-product-apps__item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 6px;
}

.ma-product-apps--dark .ma-product-apps__item-title {
    color: var(--color-white);
}

.ma-product-apps__item-desc {
    font-size: 13px;
    color: var(--color-medium-gray);
    line-height: 1.5;
}

.ma-product-apps--dark .ma-product-apps__item-desc {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
    .ma-product-apps {
        padding: 60px 24px;
    }
    .ma-product-apps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ma-product-apps__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MA Product - Gallery
   ========================================================================== */
.ma-product-gallery {
    padding: 80px var(--container-padding);
    background: var(--color-white);
    font-family: var(--font-main);
}

.ma-product-gallery--dark {
    background: var(--color-dark);
}

.ma-product-gallery__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.ma-product-gallery__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 40px;
}

.ma-product-gallery--dark .ma-product-gallery__title {
    color: var(--color-white);
}

.ma-product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ma-product-gallery__grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.ma-product-gallery__grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.ma-product-gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: #e5e5e5;
}

.ma-product-gallery--dark .ma-product-gallery__item {
    background: rgba(255,255,255,0.1);
}

.ma-product-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ma-product-gallery__item:hover img {
    transform: scale(1.05);
}

.ma-product-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-size: 12px;
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ma-product-gallery__item:hover .ma-product-gallery__caption {
    opacity: 1;
}

.ma-product-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ma-product-gallery__item:hover .ma-product-gallery__overlay {
    opacity: 1;
}

.ma-product-gallery__overlay svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-white);
}

/* Lightbox */
.ma-product-gallery__lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ma-product-gallery__lightbox--open {
    opacity: 1;
    visibility: visible;
}

.ma-product-gallery__lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ma-product-gallery__lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.ma-product-gallery__lightbox-prev,
.ma-product-gallery__lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ma-product-gallery__lightbox-prev {
    left: 20px;
}

.ma-product-gallery__lightbox-next {
    right: 20px;
}

.ma-product-gallery__lightbox-prev:hover,
.ma-product-gallery__lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.ma-product-gallery__lightbox-prev svg,
.ma-product-gallery__lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.ma-product-gallery__lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.ma-product-gallery__lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.ma-product-gallery__lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .ma-product-gallery {
        padding: 60px 24px;
    }
    .ma-product-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ma-product-gallery__grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ma-product-gallery__grid,
    .ma-product-gallery__grid--2col,
    .ma-product-gallery__grid--4col {
        grid-template-columns: 1fr;
    }
    .ma-product-gallery__lightbox-prev,
    .ma-product-gallery__lightbox-next {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   MA Product - Downloads
   ========================================================================== */
.ma-product-downloads {
    padding: 80px var(--container-padding);
    background: var(--color-off-white);
    font-family: var(--font-main);
}

.ma-product-downloads--dark {
    background: var(--color-dark);
}

.ma-product-downloads__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.ma-product-downloads__header {
    text-align: center;
    margin-bottom: 48px;
}

.ma-product-downloads__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.ma-product-downloads--dark .ma-product-downloads__title {
    color: var(--color-white);
}

.ma-product-downloads__desc {
    font-size: 15px;
    color: var(--color-medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.ma-product-downloads--dark .ma-product-downloads__desc {
    color: rgba(255,255,255,0.6);
}

.ma-product-downloads__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ma-product-downloads__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    text-decoration: none;
    transition: var(--transition);
}

.ma-product-downloads--dark .ma-product-downloads__item {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.ma-product-downloads__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--color-black);
}

.ma-product-downloads--dark .ma-product-downloads__item:hover {
    border-color: var(--color-white);
}

.ma-product-downloads__item-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-off-white);
    border-radius: 8px;
}

.ma-product-downloads--dark .ma-product-downloads__item-icon {
    background: rgba(255,255,255,0.1);
}

.ma-product-downloads__item-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-black);
}

.ma-product-downloads--dark .ma-product-downloads__item-icon svg {
    stroke: var(--color-white);
}

.ma-product-downloads__item-content {
    flex: 1;
}

.ma-product-downloads__item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.ma-product-downloads--dark .ma-product-downloads__item-title {
    color: var(--color-white);
}

.ma-product-downloads__item-desc {
    font-size: 13px;
    color: var(--color-medium-gray);
}

.ma-product-downloads--dark .ma-product-downloads__item-desc {
    color: rgba(255,255,255,0.6);
}

.ma-product-downloads__item-action {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border-radius: 50%;
    transition: var(--transition);
}

.ma-product-downloads--dark .ma-product-downloads__item-action {
    background: var(--color-white);
}

.ma-product-downloads__item:hover .ma-product-downloads__item-action {
    transform: translateY(-2px);
}

.ma-product-downloads__item-action svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-white);
}

.ma-product-downloads--dark .ma-product-downloads__item-action svg {
    stroke: var(--color-black);
}

@media (max-width: 768px) {
    .ma-product-downloads {
        padding: 60px 24px;
    }
    .ma-product-downloads__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MA Product - Related
   ========================================================================== */
.ma-product-related {
    padding: 80px var(--container-padding);
    background: var(--color-white);
    font-family: var(--font-main);
}

.ma-product-related--dark {
    background: var(--color-dark);
}

.ma-product-related__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.ma-product-related__header {
    text-align: center;
    margin-bottom: 48px;
}

.ma-product-related__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-medium-gray);
    margin-bottom: 12px;
}

.ma-product-related--dark .ma-product-related__label {
    color: rgba(255,255,255,0.5);
}

.ma-product-related__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.ma-product-related--dark .ma-product-related__title {
    color: var(--color-white);
}

.ma-product-related__desc {
    font-size: 15px;
    color: var(--color-medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.ma-product-related--dark .ma-product-related__desc {
    color: rgba(255,255,255,0.6);
}

.ma-product-related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ma-product-related__grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.ma-product-related__grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.ma-product-related__item {
    display: block;
    background: var(--color-off-white);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.ma-product-related--dark .ma-product-related__item {
    background: rgba(255,255,255,0.05);
}

.ma-product-related__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ma-product-related__item-image {
    aspect-ratio: 16/10;
    background: #e5e5e5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ma-product-related--dark .ma-product-related__item-image {
    background: rgba(255,255,255,0.1);
}

.ma-product-related__item-image--placeholder {
    padding: 40px;
}

.ma-product-related__item-image--placeholder svg {
    width: 48px;
    height: 48px;
    stroke: #ccc;
}

.ma-product-related__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ma-product-related__item:hover .ma-product-related__item-image img {
    transform: scale(1.05);
}

.ma-product-related__item-content {
    padding: 20px;
}

.ma-product-related__item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 6px;
}

.ma-product-related--dark .ma-product-related__item-title {
    color: var(--color-white);
}

.ma-product-related__item-desc {
    font-size: 13px;
    color: var(--color-medium-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.ma-product-related--dark .ma-product-related__item-desc {
    color: rgba(255,255,255,0.6);
}

.ma-product-related__item-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-black);
    transition: var(--transition);
}

.ma-product-related--dark .ma-product-related__item-link {
    color: var(--color-white);
}

.ma-product-related__item:hover .ma-product-related__item-link {
    gap: 10px;
}

.ma-product-related__item-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

@media (max-width: 1024px) {
    .ma-product-related {
        padding: 60px 24px;
    }
    .ma-product-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ma-product-related__grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ma-product-related__grid,
    .ma-product-related__grid--2col,
    .ma-product-related__grid--3col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MA Product - CTA
   ========================================================================== */
.ma-product-cta {
    position: relative;
    padding: 100px var(--container-padding);
    background: var(--color-dark);
    font-family: var(--font-main);
    background-size: cover;
    background-position: center;
}

.ma-product-cta--light {
    background: var(--color-off-white);
}

.ma-product-cta--has-bg {
    background-color: var(--color-dark);
}

.ma-product-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
}

.ma-product-cta--has-bg .ma-product-cta__overlay {
    display: block;
}

.ma-product-cta__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
}

.ma-product-cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ma-product-cta--left .ma-product-cta__content {
    text-align: left;
    margin: 0;
}

.ma-product-cta__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.ma-product-cta--light .ma-product-cta__label {
    color: var(--color-medium-gray);
}

.ma-product-cta__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.ma-product-cta--light .ma-product-cta__title {
    color: var(--color-black);
}

.ma-product-cta__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ma-product-cta--light .ma-product-cta__desc {
    color: var(--color-medium-gray);
}

.ma-product-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ma-product-cta--left .ma-product-cta__actions {
    justify-content: flex-start;
}

.ma-product-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition);
}

.ma-product-cta__btn--primary {
    background: var(--color-white);
    color: var(--color-black);
}

.ma-product-cta--light .ma-product-cta__btn--primary {
    background: var(--color-black);
    color: var(--color-white);
}

.ma-product-cta__btn--primary:hover {
    background: #e5e5e5;
}

.ma-product-cta--light .ma-product-cta__btn--primary:hover {
    background: #333;
}

.ma-product-cta__btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.4);
}

.ma-product-cta--light .ma-product-cta__btn--outline {
    color: var(--color-black);
    border-color: var(--color-black);
}

.ma-product-cta__btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.ma-product-cta--light .ma-product-cta__btn--outline:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.ma-product-cta__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ma-product-cta--left .ma-product-cta__phone {
    justify-content: flex-start;
}

.ma-product-cta__phone-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.ma-product-cta--light .ma-product-cta__phone-label {
    color: var(--color-medium-gray);
}

.ma-product-cta__phone-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

.ma-product-cta--light .ma-product-cta__phone-number {
    color: var(--color-black);
}

.ma-product-cta__phone-number:hover {
    opacity: 0.8;
}

.ma-product-cta__phone-number svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .ma-product-cta {
        padding: 60px 24px;
    }
    .ma-product-cta__title {
        font-size: 28px;
    }
    .ma-product-cta__actions {
        flex-direction: column;
    }
    .ma-product-cta__btn {
        width: 100%;
    }
}
