html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #111111;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --text-light: #ffffff;
    --accent: #1a1a1a;
    --accent-brand: #af8551;
    --aura-color: rgba(175, 133, 81, 0.18);
    --font-main: 'DM Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    --container-width: 1440px;
    --architect-grid: 1440px;
    --space-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.container {
    width: 100%;
    max-width: var(--architect-grid) !important;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.section-padding {
    padding: 50px 0;
}

.no-padding {
    padding: 0 !important;
}

.flex {
    display: flex;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

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

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.align-center {
    align-items: center !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.list-unstyled {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.grid {
    display: grid;
    gap: 20px;
}

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

.uppercase {
    text-transform: uppercase;
}

.bold {
    font-weight: 700;
}

.muted {
    color: #af8551;
}

.small {
    font-size: 0.8rem;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px !important;
}

.mb-4 {
    margin-bottom: 40px !important;
}

.mr-3 {
    margin-right: 30px !important;
}

.mr-4 {
    margin-right: 40px !important;
}

.ml-2 {
    margin-left: 20px !important;
}

.mt-1 {
    margin-top: 10px !important;
}

.mt-2 {
    margin-top: 20px !important;
}

.mt-3 {
    margin-top: 30px !important;
}

.mt-4 {
    margin-top: 40px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.py-2 {
    padding: 20px 0;
}

.py-3 {
    padding: 30px 0;
}

.text-gold {
    color: #af8551 !important;
}

.border-top {
    border-top: 1px solid #eee;
}

.border-bottom {
    border-bottom: 1px solid #eee;
}

.col-4 {
    width: 33.33%;
    flex: 0 0 33.33%;
}

.col-5 {
    width: 41.66%;
    flex: 0 0 41.66%;
}

.col-6 {
    width: 50%;
    flex: 0 0 50%;
}

.col-7 {
    width: 58.33%;
    flex: 0 0 58.33%;
}

.col-12 {
    width: 100%;
    flex: 0 0 100%;
}

@media (min-width: 576px) {
    .col-sm-6 {
        width: 50%;
        flex: 0 0 50%;
    }
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.33%;
        flex: 0 0 33.33%;
    }

    .col-md-8 {
        width: 66.66%;
        flex: 0 0 66.66%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        width: 33.33%;
        flex: 0 0 33.33%;
    }

    .col-lg-5 {
        width: 41.66%;
        flex: 0 0 41.66%;
    }

    .col-lg-7 {
        width: 58.33%;
        flex: 0 0 58.33%;
    }

    .col-lg-8 {
        width: 66.66%;
        flex: 0 0 66.66%;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }
}

.huge-headline {
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .huge-headline {
        font-size: 3.5rem;
    }
}

.wrap {
    flex-wrap: wrap;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-light {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted);
}

#pxl-loadding {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.preloader {
    position: relative;
    width: 100%;
    height: 100%;
}

.preloader .split {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: #000;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

.preloader .split.top {
    top: 0;
}

.preloader .split.bottom {
    bottom: 0;
}

.preloader .line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 3;
    transform: translateY(-50%);
    transition: width 1s ease;
}

.preloader.loaded .split.top {
    transform: translateY(-100%);
}

.preloader.loaded .split.bottom {
    transform: translateY(100%);
}

.preloader.loaded .line {
    opacity: 0;
    transition: opacity 0.5s ease;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-pill {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
}

.nav-pill li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-pill a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.nav-pill a:hover {
    color: #000;
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 20px 0;
    list-style: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    margin-top: 15px;
}

.has-submenu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    padding: 0;
    display: block;
}

.sub-menu a {
    padding: 12px 25px;
    font-size: 13px;
    color: #555;
    display: block;
    font-weight: 500;
    white-space: nowrap;
}

.sub-menu a:hover {
    background: #f9f9f9;
    color: #000;
}

.mobile-navigation .has-submenu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 5px 0 5px 0;
    margin: 0;
    display: none;
    /* Hide by default on mobile */
}

.mobile-navigation .has-submenu .sub-menu a {
    padding: 8px 0;
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 1);
    border-left: none;
    margin-top: 0;
}

.mobile-navigation .has-submenu .sub-menu a::after {
    display: none;
    /* No underline on sub-items */
}

.mobile-navigation .has-submenu .sub-menu a:hover {
    color: #af8551;
}

.submenu-toggle {
    margin-left: 10px;
    transition: transform 0.3s ease;
    font-size: 0.6rem;
    display: inline-block;
    vertical-align: middle;
}

.mobile-navigation .has-submenu.is-open .submenu-toggle {
    transform: rotate(180deg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.1rem;
}

/* Hero Section & Branding */
.hero-section {
    padding-top: 140px;
    background: #fff;
    overflow: hidden;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 0.9;
}

.hero-slogan {
    font-family: var(--font-main);
    font-size: 13px;
    letter-spacing: 0;
    color: #999;
    font-weight: 500;
}

.hero-welcome-wrap {
    max-width: 400px;
}

.hero-welcome-heading {
    letter-spacing: 0;
    color: #bbb;
    font-weight: 600;
}

.hero-welcome-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.welcome-line {
    width: 80px;
    height: 1px;
    background: #1a1a1a;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.welcome-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: lineSlide 3s infinite;
}

@keyframes lineSlide {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.align-end {
    align-items: flex-end;
}

.gap-4 {
    gap: 40px;
}

.pxl-hero-grid-container {
    max-width: var(--container-width);
    margin: 60px auto 0;
    padding: 0 40px 10px;
}

.pxl-hero-grid {
    gap: 10px;
    height: 300px;
}

.pxl-hero-col:nth-child(1),
.pxl-hero-col:nth-child(3) {
    flex: 1.76;
}

.pxl-hero-col:nth-child(2) {
    flex: 1;
}

.pxl-hero-col {
    overflow: hidden;
}

.pxl-image-hero {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pxl-bg-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-item:hover img {
    transform: scale(1.05);
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.4;
}

#pxl-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 2000;
    padding: 140px 0 80px;
    /* Safe area for header and footer room */
    transition: right 0.7s cubic-bezier(0.77, 0, 0.18, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Changed from center to prevent overlap on expansion */
    align-items: center;
    overflow-y: auto;
}

body.side-menu-open #pxl-side-menu {
    right: 0;
}

#pxl-side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

body.side-menu-open #pxl-side-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.side-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    z-index: 10;
}

.side-logo img {
    filter: brightness(0) invert(1);
}

.side-menu-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-menu-close:hover {
    transform: rotate(90deg);
    border-color: rgba(175, 133, 81, 0.6);
    color: #af8551;
}

.side-menu-content {
    text-align: center;
    width: 100%;
    max-width: 500px;
    padding: 0 30px;
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation li {
    margin-bottom: 0;
    padding: 0;
    border-bottom: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-navigation li:last-child {
    border-bottom: none;
}

body.side-menu-open .mobile-navigation li {
    opacity: 1;
    transform: translateY(0);
}

body.side-menu-open .mobile-navigation li:nth-child(1) {
    transition-delay: 0.15s;
}

body.side-menu-open .mobile-navigation li:nth-child(2) {
    transition-delay: 0.22s;
}

body.side-menu-open .mobile-navigation li:nth-child(3) {
    transition-delay: 0.29s;
}

body.side-menu-open .mobile-navigation li:nth-child(4) {
    transition-delay: 0.36s;
}

body.side-menu-open .mobile-navigation li:nth-child(5) {
    transition-delay: 0.43s;
}

body.side-menu-open .mobile-navigation li:nth-child(6) {
    transition-delay: 0.5s;
}

.mobile-navigation a {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    display: inline-block;
    padding: 12px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-navigation a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #af8551;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.mobile-navigation a:hover {
    color: #fff;
    letter-spacing: 0;
}

.mobile-navigation a:hover::after {
    width: 100%;
}

.header-utils {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-dealer-header {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background: #af8551;
    text-decoration: none;
    letter-spacing: 0;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(175, 133, 81, 0.15);
}

.btn-dealer-header:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.search-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.search-btn:hover {
    border-color: var(--accent-brand);
    color: var(--accent-brand);
    background: rgba(175, 133, 81, 0.05);
    transform: translateY(-2px);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.lang-item {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0;
    transition: all 0.3s ease;
    padding: 2px 4px;
    text-decoration: none;
}

.lang-item:hover,
.lang-item.active {
    color: var(--accent-brand);
}

.lang-item.active {
    font-weight: 800;
}

.lang-sep {
    width: 1px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .pxl-hero-grid-container {
        padding: 0 20px 10px;
    }
}


.muted-text {
    color: #ccc;
}

.btn-link {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
}

.btn-dark {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
}

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

.expertise-item {
    cursor: pointer;
    transition: var(--transition);
}

.expertise-item:hover {
    padding-left: 20px;
}

.expertise-item .num {
    font-size: 1rem;
    font-weight: 700;
}

.expertise-item .item-title {
    font-size: 2rem;
    flex: 1;
    margin-left: 40px;
}

.expertise-item .item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.expertise-item .arrow {
    font-size: 1.5rem;
    margin-left: 40px;
}

.v3-footer-widgets-aligned {
    display: flex !important;
    align-items: flex-start !important;
    padding-top: 40px !important;
    margin-left: -20px;
    margin-right: -20px;
}

.v3-footer-widget {
    padding: 0 20px !important;
}

.site-footer .border-top {
    border-color: rgba(255, 255, 255, 0.1);
}

.v3-footer-widget h4 {
    margin-top: 0 !important;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0;
}

.v3-footer-widget ul li,
.v3-footer-widget ul li a,
.v3-footer-widget p {
    color: #cbcbcb !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.v3-footer-widget ul li a:hover {
    color: #af8551 !important;
    padding-left: 5px;
}

.footer-dealer-portal .dealer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-dealer-footer {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid rgba(175, 133, 81, 0.5);
    color: #af8551 !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    text-decoration: none;
}

.btn-dealer-footer:hover {
    background: #af8551;
    color: #fff !important;
    border-color: #af8551;
}

.become-dealer-box {
    padding-top: 0;
}

.become-dealer-link {
    font-family: var(--font-heading);
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none !important;
    position: relative;
    display: inline-block;
}

.become-dealer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #af8551;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.become-dealer-link:hover {
    color: #af8551 !important;
}

.become-dealer-link:hover::after {
    width: 100%;
}

.footer-dealer-portal .text-muted {
    color: rgba(255, 255, 255, 0.4) !important;
    line-height: 1.6;
}

.btn-inspect-footer {
    display: inline-block;
    color: #cbcbcb !important;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.btn-inspect-footer:hover {
    color: #af8551;
    border-color: #af8551;
    padding-left: 10px;
}

@media (max-width: 767px) {
    .w-100-mobile {
        width: 100% !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .mt-3-mobile {
        margin-top: 15px !important;
    }

    .huge-headline {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }

    .site-footer {
        padding-bottom: 120px !important;
        /* Extra space for floating buttons */
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
}

@media (max-width: 1200px) {
    .pxl-hero-grid-container {
        padding: 0 40px 10px;
    }
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .header-right {
        display: none !important;
    }

    .site-header .flex-between {
        justify-content: space-between;
    }

    .col-4,
    .col-5,
    .col-6,
    .col-7 {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .intro-section .flex-between {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-header .flex-between {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .hero-welcome-wrap {
        max-width: 100%;
        text-align: center !important;
    }

    .welcome-line {
        margin: 0 auto;
    }

    .intro-heading {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .pxl-hero-grid {
        flex-direction: column;
        height: auto;
    }

    .pxl-hero-col {
        height: 300px;
        width: 100%;
        flex: none !important;
    }
}

.intro-section {
    position: relative;
    background-color: #fff;
    padding: 50px 0 0;
}

.intro-text-block {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 100%;
}

.intro-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #121212;
    font-weight: 500;
    text-transform: none;
    max-width: 100%;
}

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #121212;
    gap: 10px;
    border-bottom: 2px solid #121212;
    padding-bottom: 3px;
}

.btn-dark-arrow {
    display: inline-flex;
    align-items: center;
    background: #121212;
    color: #fff;
    padding: 0 40px;
    height: 54px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    gap: 15px;
    transition: var(--transition-smooth);
}

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

.arrow-icon {
    transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.btn-link-arrow:hover .arrow-icon,
.btn-dark-arrow:hover .arrow-icon {
    transform: translateX(5px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.logo-grid img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.portfolio-image {
    height: 600px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.expertise-item {
    position: relative;
}

.expertise-hover-img {
    position: fixed;
    width: 300px;
    height: 200px;
    pointer-events: none;
    opacity: 0;
    z-index: 100;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.expertise-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-section-spectrum {
    position: relative;
    padding: 60px 0;
}

.vision-glass-spectrum {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glass-shard {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.shard-1 {
    width: 400px;
    height: 600px;
    top: 10%;
    right: 10%;
    transform: rotate(15deg);
}

.shard-2 {
    width: 300px;
    height: 400px;
    bottom: 10%;
    left: 5%;
    transform: rotate(-10deg);
    border-radius: 150px 5px;
}

.shard-3 {
    width: 500px;
    height: 200px;
    top: 40%;
    left: 30%;
    transform: rotate(-5deg);
    background: linear-gradient(90deg, rgba(175, 133, 81, 0.05), rgba(255, 255, 255, 0.2));
}

.vision-spectrum-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    align-items: center;
}

.vision-kicker-modern {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kicker-dot {
    width: 8px;
    height: 8px;
    background: #af8551;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(175, 133, 81, 0.5);
}

.kicker-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #af8551;
}

.perla-magnetic-title {
    font-size: 5rem;
    line-height: 0.95;
    letter-spacing: 0;
    cursor: default;
}

.title-layer {
    display: inline-block;
    transition: transform 0.1s ease-out;
}

.layer-outline {
    -webkit-text-stroke: 1px #111;
    color: #b38549;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    opacity: 0.7;
}

.layer-solid {
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
}

.layer-gold {
    font-weight: 200;
    color: #af8551;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 3.5rem;
}

.vision-blueprint-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: flex-end;
}

.blueprint-body-wrap {
    position: relative;
    padding-bottom: 20px;
}

.blueprint-id {
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: 800;
    color: #af8551;
    letter-spacing: 0;
    margin-bottom: 15px;
}

.blueprint-divider {
    width: 40px;
    height: 1px;
    background: #af8551;
    margin-bottom: 25px;
    opacity: 0.5;
}

.vision-immersive-body {
    position: relative;
    z-index: 5;
}

.lead-p {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 400;
    color: #666;
}

.vision-technical-specs {
    display: flex;
    gap: 60px;
}

.spec-node {
    display: flex;
    align-items: center;
    gap: 20px;
}

.spec-node i {
    font-size: 1.5rem;
    color: #af8551;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(175, 133, 81, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.n-head {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 0;
}

.n-body {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
}

.vision-visual-composition {
    position: relative;
    z-index: 2;
}

.composition-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-node {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 10;
    cursor: pointer;
}

.node-pulse {
    width: 100%;
    height: 100%;
    background: #af8551;
    border-radius: 50%;
    box-shadow: 0 0 20px #af8551;
    animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.node-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111;
    color: #fff;
    padding: 8px 15px;
    font-size: 0.65rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    letter-spacing: 0;
    font-weight: 700;
}

.visual-node:hover .node-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.composition-frame {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    border-top: 2px solid rgba(175, 133, 81, 0.5);
    border-left: 2px solid rgba(175, 133, 81, 0.5);
    pointer-events: none;
}

.composition-metadata {
    position: absolute;
    bottom: -30px;
    right: 40px;
    display: flex;
    gap: 30px;
}

.meta-item {
    font-size: 0.65rem;
    font-weight: 700;
    font-family: monospace;
    color: #999;
}

@media (max-width: 1200px) {
    .perla-magnetic-title {
        font-size: 4rem;
    }
}

@media (max-width: 991px) {
    .vision-spectrum-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vision-section-spectrum {
        padding: 80px 0;
    }

    .vision-glass-spectrum {
        display: none;
    }

    .perla-magnetic-title {
        font-size: 3.5rem;
    }
    
    .layer-gold {
        font-size: 2.5rem;
    }
    
    .title-layer {
        white-space: normal;
    }
    
    .vision-blueprint-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blueprint-title-wrap {
        margin-bottom: 20px;
    }

    .composition-frame {
        display: none;
    }

    .vision-visual-composition {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .perla-magnetic-title {
        font-size: 2.5rem;
    }
    .layer-gold {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .perla-magnetic-title {
        font-size: 2.8rem;
    }
    
    .layer-gold {
        font-size: 2rem;
    }
    
    .lead-p {
        font-size: 1rem;
    }
    
    .vision-section-spectrum {
        padding: 60px 0 0;
    }
}

@media (max-width: 576px) {
    .perla-magnetic-title {
        font-size: 2.2rem;
    }
    
    .layer-gold {
        font-size: 1.6rem;
    }
    
    .vision-kicker-modern {
        margin-bottom: 20px;
    }
}

@media (max-width: 1200px) {
    .vision-title-modern {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .vision-section-v2 {
        padding: 100px 0;
    }

    .vision-editorial-wrap {
        flex-direction: column;
    }

    .vision-image-block {
        width: 100%;
        margin-bottom: -60px;
    }

    .vision-floating-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        margin: 0 auto;
        padding: 40px;
    }
}

.vision-text.secondary {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

.vision-btn {
    font-size: 0.9rem;
    padding-bottom: 5px;
    margin-top: 15px;
}

@media (max-width: 1200px) {
    .vision-grid {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .vision-visual {
        order: 2;
    }

    .vision-content {
        order: 1;
    }

    .vision-title {
        font-size: 2.5rem;
    }
}

.products-creative-section {
    background-color: #fff;
    padding: 100px 0;
}

.products-creative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-creative-card {
    position: relative;
    padding-top: 20px;
}

.card-count {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #eee;
    margin-bottom: 15px;
    letter-spacing: 0;
}

.card-visual-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 4px;
}

.card-visual-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-creative-card:hover .card-visual-wrap img {
    transform: scale(1.1);
}

.product-creative-card:hover .card-overlay {
    opacity: 1;
}

.btn-explore {
    padding: 15px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-creative-card:hover .btn-explore {
    transform: translateY(0);
}

.product-type {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.product-desc-small {
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 991px) {
    .products-creative-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Kinetic Product Gallery */
.kinetic-gallery-section {
    background-color: #fafafa;
    padding: 140px 0;
    overflow: hidden;
}

.kinetic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 50px);
    gap: 20px;
    margin-top: 60px;
}

.kinetic-item {
    position: relative;
    transition: var(--transition-smooth);
}

.kinetic-visual {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 2px;
}

.kinetic-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v-left {
    grid-column: 1 / 7;
    grid-row: 1 / 11;
    z-index: 2;
}

.v-right-top {
    grid-column: 8 / 13;
    grid-row: 2 / 7;
    z-index: 1;
}

.v-bottom-center {
    grid-column: 7 / 11;
    grid-row: 8 / 13;
    z-index: 3;
    margin-left: -50px;
    /* Overlap effect */
}

.glass-info {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    padding: 40px;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.kinetic-item:hover .glass-info {
    opacity: 1;
    transform: translateY(0);
    right: 20px;
}

.kinetic-item:hover .kinetic-visual img {
    transform: scale(1.1);
}

.product-cat {
    font-size: 0.7rem;
    letter-spacing: 0;
    color: #999;
    display: block;
    margin-bottom: 15px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-lead {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.btn-minimal {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    text-decoration: none;
    position: relative;
    padding-bottom: 8px;
}

.btn-minimal .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #000;
    transition: width 0.3s;
}

.btn-minimal:hover .line {
    width: 100%;
}

/* Large Background Numbering */
.kinetic-item::before {
    content: attr(data-number);
    position: absolute;
    top: -50px;
    left: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    font-family: var(--font-heading);
}

@media (max-width: 991px) {
    .kinetic-grid {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .v-left,
    .v-right-top,
    .v-bottom-center {
        margin: 0;
        grid-column: auto;
        grid-row: auto;
    }

    .kinetic-visual {
        aspect-ratio: 4/5;
    }

    .glass-info {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        opacity: 1;
        transform: none;
        margin-top: -40px;
        z-index: 5;
    }
}

/* Bento Products Showcase */
.bento-products-section {
    background-color: #fff;
    padding: 120px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 30px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    border-radius: 4px;
}

.bento-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.bento-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Areas */
.bento-main {
    grid-column: 1 / 9;
    grid-row: 1 / 2;
}

.bento-side {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}

.bento-bottom {
    grid-column: 1 / 9;
    grid-row: 2 / 3;
}

/* Labels and Content */
.bento-item::before {
    content: attr(data-label);
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 0.7rem;
    letter-spacing: 0;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    z-index: 5;
    transition: transform 0.5s var(--transition-smooth);
}

.bento-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.bento-lead {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0;
}

.bento-item:hover .bento-visual img {
    transform: scale(1.08);
}

.bento-link .arrow {
    transition: transform 0.3s;
}

.bento-link:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
        grid-template-rows: auto;
    }

    .bento-item {
        height: 400px;
    }

    .bento-title {
        font-size: 1.5rem;
    }
}

/* Cinematic Products Showcase */
.cinematic-products-showcase {
    background: #000;
}

.product-frame {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.frame-visual {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
}

.frame-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0s linear;
    /* Handled by GSAP usually, but we set base here */
}

.frame-content {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    padding: 80px;
    background: #fff;
    color: #000;
    position: relative;
    z-index: 10;
}

.frame-dark .frame-content {
    background: #0a0a0a;
    color: #fff;
}

.frame-number-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-heading);
}

.frame-dark .frame-number-bg {
    color: rgba(255, 255, 255, 0.03);
}

.product-label-small {
    font-size: 0.75rem;
    letter-spacing: 0;
    font-weight: 700;
    color: #999;
    display: block;
    margin-bottom: 20px;
}

.product-title-huge {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.8;
}

.product-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.product-specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

.frame-dark .product-specs-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-specs-list li span {
    font-weight: 700;
    color: #999;
}

.btn-cinematic {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.cinematic-arrow {
    width: 40px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.3s;
}

.cinematic-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: rotate(45deg);
}

.btn-cinematic:hover .cinematic-arrow {
    width: 60px;
}

/* --- Internal Banner Modern Architecture (v8.5) --- */
.pxl-internal-banner {
    min-height: 355px;
    background: #f3eee7;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 10;
    padding-top: 140px;
    padding-bottom: 60px;
}

.banner-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.banner-top-row {
    margin-bottom: 30px;
}

.banner-center {
    text-align: center;
}

.pxl-internal-banner .internal-page-title {
    color: #000000;
}

.pxl-internal-banner .pxl-breadcrumbs a,
.pxl-internal-banner .pxl-breadcrumbs span {
    color: rgb(0 0 0 / 50%);
}

.pxl-internal-banner .pxl-breadcrumbs a:hover {
    color: #af8551;
}

.pxl-internal-banner .banner-id {
    color: rgb(0 0 0 / 50%);
}

.banner-blueprint-dot {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(circle, rgba(175, 133, 81, 0.12) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.internal-page-title {
    font-size: clamp(3rem, 8vw, 3.5rem);
    font-weight: 800;
    line-height: 65px;
    letter-spacing: 0;
    color: #111;
    margin: 0;
    text-transform: none;
}

.pxl-breadcrumbs {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    color: #af8551;
    margin-bottom: 15px;
}

.pxl-breadcrumbs a {
    color: #999;
}

.pxl-breadcrumbs a:hover {
    color: #111;
}

.banner-id {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    color: #ddd;
    border-left: 1px solid #eee;
    padding-left: 20px;
}

@media (max-width: 1200px) {
    .product-title-huge {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .pxl-internal-banner {
        min-height: 300px;
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .internal-page-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: 0;
    }
}

/* Corporate Creative Styles (v8.3.0) */
.creative-hero {
    height: 450px !important;
}

.floating-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #af8551;
}

.creative-page-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: 0;
    margin: 0;
}

.blueprint-sketch-abs {
    opacity: 0.3;
    transform: scale(1.5) rotate(-15deg);
}

.organic-story-wrap {
    position: relative;
}

.floating-background-text {
    position: absolute;
    top: 10%;
    right: -5%;
    font-size: 15rem;
    font-family: var(--font-heading);
    font-weight: 900;
    opacity: 0.03;
    pointer-events: none;
}

.story-visual-composition .main-visual img {
    border-radius: 2px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.1);
}

.floating-tech-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 280px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.creative-title {
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0;
}

.milestone {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.m-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.m-desc {
    color: #888;
    font-size: 0.9rem;
}

/* Spectrum Cards */
.spectrum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.glass-glow-card {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-inner-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(175, 133, 81, 0.05) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.glass-glow-card:hover .card-inner-glow {
    transform: translate(10%, 10%);
}

.card-icon {
    font-size: 2rem;
    color: #af8551;
    margin-bottom: 30px;
}

.glass-glow-card h3 {
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

/* Bento 2.0 */
.bento-2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
}

.bento-box {
    padding: 30px;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.box-l {
    grid-column: span 2;
    grid-row: span 1;
}

.box-m {
    grid-column: span 2;
}

.box-s {
    grid-column: span 1;
}

.b-dark {
    background: #111;
    color: #fff;
}

.b-gold {
    background: #af8551;
    color: #fff;
}

.b-light {
    background: #fafafa;
}

.b-outline {
    border: 2px solid #111;
}

.box-bg-icon {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.03;
}

/* Creative Spec */
.spec-item {
    padding: 20px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.spec-item:hover {
    border-color: #af8551;
    padding-left: 30px;
}

.spec-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #af8551;
    transition: all 0.3s ease;
}

.spec-item:hover::before {
    width: 5px;
}

@media (max-width: 991px) {
    .creative-page-title {
        font-size: 4rem;
    }

    .spectrum-grid {
        grid-template-columns: 1fr;
    }

    .bento-2-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
    }

    .box-l,
    .box-m {
        grid-column: span 2;
    }

    .story-visual-composition {
        margin-bottom: 50px;
    }

    .floating-tech-card {
        width: 220px;
        left: 0;
        bottom: -20px;
    }
}

/* Corporate Ultra-Modern Styles (v8.2.0) */
.history-spread-section {
    position: relative;
}

.bg-year-typography {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 0;
    white-space: nowrap;
    opacity: 0.1;
}

.y-big {
    font-size: clamp(10rem, 20vw, 25rem);
    font-family: var(--font-heading);
    line-height: 1;
    font-weight: 900;
}

.t-outline {
    -webkit-text-stroke: 2px #000;
    color: transparent;
}

.t-solid {
    color: #111;
}

.y-arrow {
    font-size: 8rem;
    color: #af8551;
}

.spread-content {
    position: relative;
    z-index: 2;
}

.spread-title {
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
}

.spread-image-stack {
    position: relative;
    padding-left: 50px;
}

.main-spread-frame {
    background: #fff;
    padding: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
}

.tech-spec-card {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: #111;
    color: #fff;
    padding: 30px;
    width: 320px;
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.tech-spec-card h4 {
    color: #fff;
    margin: 10px 0;
    letter-spacing: 0;
}

.tech-spec-card p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

/* Mission & Vision Dark Center */
.mission-command-center {
    background: #0a0a0a;
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.center-lines .l-hor {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(175, 133, 81, 0.2);
}

.center-lines .l-ver {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(175, 133, 81, 0.2);
}

.command-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.command-center-marker {
    width: 40px;
    height: 40px;
    border: 1px solid #af8551;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-dot {
    width: 4px;
    height: 4px;
    background: #af8551;
    border-radius: 50%;
    box-shadow: 0 0 10px #af8551;
}

.i-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.i-title {
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mission-focus {
    text-align: right;
}

.vision-focus {
    text-align: left;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.bento-item {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover {
    transform: scale(1.02);
}

.item-large {
    grid-column: span 2;
    grid-row: span 1;
}

.item-medium {
    grid-column: span 2;
}

.item-small {
    grid-column: span 1;
}

.b-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.b-gold {
    background: #af8551;
    color: #fff;
}

.b-white {
    background: #fff;
}

.b-black {
    background: #111;
    color: #fff;
}

.b-num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-weight: 900;
    opacity: 0.1;
    font-size: 2rem;
}

.usage-blueprint-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.u-item {
    border-left: 3px solid #af8551;
    padding: 15px 25px;
    background: #fafafa;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .bg-year-typography {
        display: none;
    }

    .spread-image-stack {
        padding-left: 0;
        margin-bottom: 60px;
    }

    .command-grid {
        grid-template-columns: 1fr;
        text-align: left !important;
        gap: 40px;
    }

    .command-center-marker {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .item-large,
    .item-medium {
        grid-column: span 2;
    }

    .usage-blueprint-list {
        grid-template-columns: 1fr;
    }
}

.corporate-story-section .story-text-side {
    padding-right: 50px;
}

.story-image-frame {
    background: #f0f0f0;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.year-badge {
    position: absolute;
    background: #af8551;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    z-index: 5;
}

.badge-2019 {
    top: -20px;
    left: -20px;
    background: #111;
}

.badge-2024 {
    bottom: -20px;
    right: -20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 40px;
    position: relative;
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 100;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 20px;
    right: 30px;
}

.card-big-text {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.4;
    color: #333;
}

.small-desc {
    color: #999;
}

.values-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-item {
    background: #fff;
    padding: 50px 30px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #fafafa;
}

.v-num {
    display: block;
    font-family: var(--font-heading);
    color: #af8551;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.v-title {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
}

.architectural-list {
    list-style: none;
    padding: 0;
}

.architectural-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.architectural-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #af8551;
    margin-right: 20px;
}

@media (max-width: 991px) {
    .values-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-text-side {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .glass-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .values-modern-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .product-frame {
        flex-direction: column;
        min-height: auto;
    }

    .frame-visual {
        flex: 0 0 auto;
        height: 60vh;
    }

    .frame-content {
        flex: 0 0 auto;
        padding: 60px 30px;
    }

    .frame-light {
        flex-direction: column-reverse;
    }

    .product-title-huge {
        font-size: 2.5rem;
    }
}



@media (max-width: 991px) {
    .card-inner {
        flex-direction: column !important;
    }

    .card-image-wrap {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
        margin: 0 !important;
    }

    .card-info-box {
        padding: 40px 30px;
    }

    .card-title-vertical {
        font-size: 4rem;
        right: 10px;
        bottom: 10px;
    }
}

.tech-scroll-showcase {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blueprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.tech-item {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    z-index: 2;
}

.tech-container {
    padding: 0 80px;
    width: 100%;
}

.tech-columns {
    display: flex;
    align-items: center;
    gap: 100px;
}

.tech-visual-col {
    flex: 0 0 55%;
    position: relative;
}

.tech-image-wrap {
    position: relative;
    border-radius: 4px;
    overflow: visible;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.tech-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tech-content-col {
    flex: 0 0 40%;
}

/* Filling Outline Text */
.giant-title-wrap {
    margin-bottom: 40px;
}

.giant-title-outline {
    font-size: 10rem;
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    position: relative;
    font-family: var(--font-heading);
    transition: all 0.5s;
}

.tech-item.active .giant-title-outline {
    color: #fff;
    -webkit-text-stroke: 1px transparent;
}

.tech-callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.callout-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff;
    position: relative;
}

.callout-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulseCallout 2s infinite;
}

.callout-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0;
    border-left: 2px solid #fff;
    white-space: nowrap;
}

@keyframes pulseCallout {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.tech-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0;
    display: block;
    margin-bottom: 20px;
}

.tech-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.tech-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 40px;
}

.btn-architect-tech {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-architect-tech:hover {
    border-bottom: 1px solid #fff;
    gap: 25px;
}

/* Reverse Layout */
.item-reverse .tech-columns {
    flex-direction: row-reverse;
}

@media (max-width: 1200px) {
    .giant-title-outline {
        font-size: 7rem;
    }
}

@media (max-width: 991px) {
    .tech-columns {
        flex-direction: column;
        gap: 50px;
    }

    .tech-visual-col,
    .tech-content-col {
        flex: 0 0 100%;
    }

    .tech-container {
        padding: 0 30px;
    }

    .giant-title-outline {
        font-size: 5rem;
    }
}

.strategic-section {
    background-color: #ffffff;
    padding: 140px 0;
    overflow: hidden;
}

.strategic-grid {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.strategic-left {
    flex: 0 0 45%;
}

.strategic-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    color: #121212;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    letter-spacing: 0;
}

.strategic-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #777777;
    margin-bottom: 50px;
}

.btn-strategic {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #121212;
    text-decoration: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.btn-strategic i {
    transition: transform 0.3s ease;
}

.btn-strategic:hover {
    border-bottom: 1px solid #121212;
}

.btn-strategic:hover i {
    transform: translateX(10px);
}

.strategic-right {
    flex: 1;
}

.strategic-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pxl--item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    will-change: transform, opacity;
}

.pxl--item.active {
    opacity: 1;
    transform: scale(1);
    background: #f9f9f9;
}

.pxl--item:not(.active) {
    opacity: 0.3;
    transform: scale(0.95);
}

.pxl--item:hover {
    opacity: 1;
    transform: scale(1);
}

.pxl-item--icon {
    flex: 0 0 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121212;
}

.pxl-item--icon svg {
    width: 100%;
    height: auto;
    transition: stroke-dashoffset 0.6s ease-in-out;
}

.pxl-item--title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 0;
}

.pxl-item--desc {
    font-size: 1rem;
    color: #777;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .strategic-title {
        font-size: 3rem;
    }

    .strategic-grid {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .strategic-grid {
        flex-direction: column;
    }

    .strategic-left {
        width: 100%;
        margin-bottom: 60px;
    }

    .strategic-title {
        font-size: 2.5rem;
    }
}

.floating-cards-showcase {
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    perspective: 3000px;
    position: relative;
    width: 100%;
}

.floating-cards-showcase .container.no-padding {
    max-width: 1355px !important;
    /* Refined width per user request v4.4 */
    margin: 0 auto;
}

.showcase-header {
    margin-bottom: 60px;
}

.huge-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #111;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .huge-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .huge-title {
        font-size: 2rem;
    }
}

.floating-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 1355px !important;
    margin: 0 auto;
    position: relative;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.floating-card-item {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
}

.card-number-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 40vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.015);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    opacity: 0;
    will-change: transform, opacity;
}

.card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    gap: 0;
}

.item-reverse .card-inner {
    flex-direction: row-reverse;
}

.card-image-wrap {
    position: relative;
    flex: 0 0 65%;
    height: 650px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    /* Initial state for Lens Reveal */
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    will-change: clip-path, transform;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    /* Start zoomed for entry effect */
    will-change: transform;
}

.card-title-vertical {
    position: absolute;
    top: 40px;
    right: -40px;
    writing-mode: vertical-rl;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-heading);
    letter-spacing: 0;
    opacity: 0;
    will-change: transform, opacity;
}

.card-side-label {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #121212;
    opacity: 0.2;
    transform-origin: center;
}

.card-info-box.card-info-glass {
    position: relative;
    flex: 0 0 55%;
    margin-left: -20%;
    z-index: 3;
    padding: 70px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(50px);
    will-change: transform, opacity;
    overflow: hidden;
}

@media (max-width: 768px) {
    .card-info-box.card-info-glass {
        padding: 30px;
    }
}

.item-reverse .card-info-box.card-info-glass {
    margin-left: 0;
    margin-right: -20%;
    transform: translateX(-50px);
}

.card-info-box::after {
    content: '';
    position: absolute;
    top: var(--aura-y, -100%);
    left: var(--aura-x, -100%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--aura-color) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: -1;
}

.card-info-box:hover::after {
    opacity: 1;
}

.card-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
    letter-spacing: 0;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .card-title {
        font-size: 2rem;
    }
}

.card-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
}

.card-status-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #000;
    opacity: 0.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.btn-architect-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    color: #111;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: uppercase;
}

.link-circle {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-architect-link:hover .link-circle {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: scale(1.1) rotate(45deg);
}

@media (max-width: 1200px) {
    .card-inner {
        flex-direction: column !important;
    }

    .card-image-wrap {
        flex: none;
        width: 100%;
        height: 500px;
    }

    .card-info-box.card-info-glass {
        width: 95%;
        margin: -80px auto 0 !important;
        padding: 50px;
        opacity: 1;
        transform: none !important;
    }

    .card-number-bg {
        display: none;
    }

    .stack-connector {
        display: none;
    }
}

.spec-block {
    position: relative;
    width: 100%;
    min-height: 35vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
}

.spec-bg-text {
    position: absolute;
    left: -2vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.012);
    letter-spacing: 0;
    pointer-events: none;
    z-index: 0;
}

.spec-bg-text.right {
    left: auto;
    right: -2vw;
}

.spec-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    max-width: 1355px !important;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.spec-subtitle {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #111;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
}

.spec-paragraph {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #111;
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.stat-lab {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #888;
}

.spec-blueprint-abs {
    position: absolute;
    right: 15vw;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.spec-blueprint-abs.left {
    right: auto;
    left: 15vw;
}

.spec-blueprint-abs img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
}

@media (max-width: 1024px) {
    .spec-inner {
        flex-direction: column !important;
        gap: 40px;
    }

    .spec-paragraph {
        font-size: 1.2rem;
    }

    .spec-editorial.col-6,
    .spec-stats.col-6 {
        width: 100% !important;
        flex: none !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .spec-bg-text {
        font-size: 25vw;
    }
}

.connector-label .coord {
    font-size: 0.7rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0;
    text-transform: uppercase;
}

.connector-label .val {
    font-size: 0.65rem;
    color: #888;
    letter-spacing: 0;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: -1;
}

.search-content {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-overlay.active .search-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: -60px;
    right: 40px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #111;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.search-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent-brand);
}

.search-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #111;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.search-form-wrap form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #111;
    padding-bottom: 10px;
}

.search-field {
    width: 100%;
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: #111;
    outline: none;
    padding: 10px 0;
}

.search-field::placeholder {
    color: #ccc;
}

.search-submit {
    background: none;
    border: none;
    font-size: 2rem;
    color: #111;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-submit:hover {
    transform: translateX(10px);
    color: var(--accent-brand);
}

.search-suggestions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.small-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #999;
}

.search-suggestions a {
    font-size: 14px;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.search-suggestions a:hover {
    border-color: var(--accent-brand);
    color: var(--accent-brand);
}

.awards-marquee-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    background-image: url('../../images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin: 0;
    padding: 0 0 4vh 0;
}

.marquee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.marquee-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    white-space: nowrap;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}

.marquee-content span.award-text {
    font-family: var(--font-heading);
    font-size: 58px;
    /* Specific font size requested */
    font-weight: 200;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
    letter-spacing: 0;
    opacity: 0.8;
}

.marquee-content span.award-sep {
    font-size: 58px;
    /* Synced with text */
    color: var(--accent-brand);
    font-weight: 200;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .marquee-content span.award-text {
        font-size: 32px;
    }

    .marquee-content span.award-sep {
        font-size: 32px;
    }

    .awards-marquee-section {
        height: 40vh;
        background-attachment: scroll;
        padding-bottom: 2vh;
    }
}

.why-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-header-bridge {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, rgba(175, 133, 81, 0.4) 50%, transparent 95%);
    position: relative;
    margin: 0 40px;
}

.why-header-bridge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid #af8551;
    background: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.why-header-left {
    flex-shrink: 0;
}

.why-focus-badge {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(175, 133, 81, 0.2);
    border-radius: 50%;
    animation: badgePulse 3s infinite ease-in-out;
}

.badge-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge-year {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #111;
    letter-spacing: 0;
    line-height: 1;
}

.badge-label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #af8551;
    letter-spacing: 0;
    margin-top: 5px;
    line-height: 1.2;
}

@keyframes badgePulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.why-perla-section {
    background-color: #fff;
    color: #111;
}

.why-header {
    max-width: 700px;
    text-align: right;
}

.why-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.header-line-anim {
    width: 60px;
    height: 1px;
    background: #af8551;
    margin: 20px 0 0 auto;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
    transform-origin: right;
}


.why-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.why-grid-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Column 1: Points */
.why-col-points {
    background-color: #f8f8f8;
    padding: 60px 40px;
    display: flex;
    align-items: center;
}

.why-points-inner {
    width: 100%;
}

.why-col-points .cta-title {
    color: #111;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.why-col-points .cta-content {
    margin-top: 40px;
}

.why-col-points .why-subtitle {
    margin-bottom: 30px;
}

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

.why-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.why-point-list li:last-child {
    margin-bottom: 0;
}

.point-square {
    width: 6px;
    height: 6px;
    background-color: #af8551;
    /* Using brand gold */
    margin-top: 10px;
    flex-shrink: 0;
}

.point-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
}

/* Column 2: Image */
.why-col-image .why-main-img-wrap {
    height: 100%;
    overflow: hidden;
}

.why-col-image .why-main-img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Column 3: CTA */
.why-cta-block {
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
    min-height: 400px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 300px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #111;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: #af8551;
    color: #fff;
}

/* Stats Bottom */
.why-stats-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-num {
    font-size: 4rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0;
    max-width: 180px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 60px;
}

@media (max-width: 768px) {
    .why-stats-bottom {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding-top: 40px;
    }

    .stat-box {
        flex-direction: column;
        gap: 15px;
    }

    .stat-desc {
        max-width: 100%;
        font-size: 0.8rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
        margin: 0;
    }

    .why-header-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .why-header {
        text-align: center;
        max-width: 100%;
    }

    .why-header-bridge {
        display: none;
    }
}

@media (max-width: 1200px) {
    .why-grid-top {
        grid-template-columns: 1fr 1fr;
    }

    .why-col-cta {
        grid-column: span 2;
    }

    .stat-num {
        font-size: 4rem;
    }
}

@media (max-width: 991px) {
    
    .pxl-plise-mechanism {
    padding: 0 0 !important;
 }  
    .pillars-v2-header {
    margin-bottom: 50px !important;
}

    .pxl-plise-pillars-v2 {
    padding: 45px 0 !important;
    }
    .pxl-plise-heritage {
        padding: 40px 0 0 !important;
    }
    .showcase-header {
        margin-bottom: 55px;
    }
    .intro-section {
        padding: 50px 0 10px;
    }
    .floating-cards-showcase {
        padding: 0;
    }
    .why-grid-top {
        grid-template-columns: 1fr;
    }

    .why-col-cta {
        grid-column: span 1;
    }

    .why-stats-bottom {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .stat-divider {
        display: none;
    }

    .why-title {
        font-size: 2.5rem;
    }

    .why-col-points {
        padding: 40px 20px;
    }

    .why-cta-block {
        padding: 40px 20px;
        min-height: 300px;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.menu-toggle .line {
    display: block;
    width: 100%;
    height: 2px;
    min-height: 2px;
    flex-shrink: 0;
    background: #000 !important;
    /* Force black for absolute visibility */
    margin-bottom: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle .line:last-child {
    margin-bottom: 0;
}

header.scrolled .menu-toggle .line {
    background: #000 !important;
}


@media (max-width: 991px) {
    .menu-toggle {
        display: flex !important;
        /* Force visible on mobile */
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .header-right,
    .desktop-only {
        display: none !important;
    }

    .mobile-lang-wrapper {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 30px;
        margin-top: 30px;
    }

    .mobile-lang-toggle {
        width: 100%;
        background: rgb(175 133 81 / 55%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0;
        color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        transition: all 0.3s;
        border-radius: 4px;
    }

    .mobile-lang-toggle:hover {
        border-color: rgba(175, 133, 81, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }

    .mobile-lang-toggle i {
        font-size: 0.7rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-lang-wrapper.is-open .mobile-lang-toggle i {
        transform: rotate(180deg);
    }

    .mobile-lang-list {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(255, 255, 255, 0.03);
        display: flex;
        flex-direction: column;
        border-radius: 0 0 4px 4px;
    }

    .mobile-lang-wrapper.is-open .mobile-lang-list {
        max-height: 400px;
        padding-top: 5px;
    }

    .lang-link {
        padding: 12px 20px;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 1);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        transition: all 0.3s;
        letter-spacing: 0;
    }

    .lang-link:last-child {
        border-bottom: none;
    }

    .lang-link.active {
        color: #af8551;
        background: rgba(175, 133, 81, 0.08);
    }

    .lang-link:hover {
        color: #af8551;
        padding-left: 25px;
    }
}

.pxl-kinetic-dock {
    position: fixed;
    bottom: 50px;
    left: 50px;
    /* Restore to left */
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    will-change: transform;
}

.dock-items {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.dock-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(175, 133, 81, 0.3);
    color: #111;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dock-item i {
    position: relative;
    z-index: 3;
}

.dock-item.wa {
    color: #25D366;
    transition-delay: 0.1s;
}

.dock-item.ig {
    color: #E4405F;
    transition-delay: 0.2s;
}

.dock-item:hover {
    transform: translateX(10px) scale(1.15);
    background: #111;
    color: #fff !important;
    border-color: #af8551;
}

.dock-item.wa:hover {
    background: #25D366 !important;
    border-color: #25D366 !important;
}

.dock-tooltip {
    position: absolute;
    left: 80px;
    background: #111;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dock-item:hover .dock-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .pxl-kinetic-dock {
        bottom: 25px;
        left: 25px;
    }

    .dock-toggle {
        width: 56px;
        height: 56px;
    }

    .dock-item {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

.v3-kicker {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #af8551;
    margin-bottom: 15px;
}

.v3-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f8f4ef, #f0ebe3);
    border-radius: 30px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #af8551;
    margin-bottom: 20px;
}

.v3-heading {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    color: #111;
    margin: 0 0 25px;
}

.v3-heading em {
    font-style: normal;
    color: #af8551;
}

.v3-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.v3-divider {
    width: 60px;
    height: 2px;
    background: #af8551;
    margin: 20px auto 0;
}

.v3-story {
    padding: 75px 0 45px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.v3-story__bg-text {
    position: absolute;
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 900;
    letter-spacing: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
    color: transparent;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.v3-story__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.v3-story__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.v3-story__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v3-story__img-wrap:hover img {
    transform: scale(1.04);
}

.v3-story__tech-tag {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: -40px;
    margin-left: 30px;
    position: relative;
    z-index: 2;
    max-width: 280px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.v3-story__tech-tag strong {
    display: block;
    font-size: 0.95rem;
    margin-top: 5px;
}

.v3-story__tech-tag small {
    display: block;
    color: #999;
    font-size: 0.8rem;
    margin-top: 4px;
}

.v3-milestones {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.v3-milestone {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #fafafa;
    transition: background 0.3s;
}

.v3-milestone:hover {
    background: #f5f0ea;
}

.v3-milestone__year {
    font-size: 1.3rem;
    font-weight: 900;
    color: #af8551;
    min-width: 55px;
}

.v3-milestone__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

/* ═══ CHAPTER 02: Vizyon & Misyon ═══ */
.v3-vision {
    padding: 40px 0 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.v3-vision__deco-line {
    position: absolute;
    top: 0;
    left: 60px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(175, 133, 81, 0.15), transparent);
    pointer-events: none;
}

.v3-vision__header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.v3-vision__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    color: #111;
    margin: 0;
}

.v3-vision__title span {
    font-weight: 300;
    font-style: italic;
    color: #af8551;
}

.v3-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.v3-vm-card {
    background: #fbf5ed;
    border-radius: 24px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(175, 133, 81, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s;
}

.v3-vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(175, 133, 81, 0.15);
}

.v3-vm-card__num {
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(175, 133, 81, 0.06);
    line-height: 1;
    pointer-events: none;
}

.v3-vm-card__badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #af8551;
    background: rgba(175, 133, 81, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.v3-vm-card__content {
    position: relative;
    z-index: 1;
}

.v3-vm-card__content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 15px;
}

.v3-vm-card__content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.v3-vm-card__accent {
    width: 40px;
    height: 3px;
    background: #af8551;
    margin-top: 25px;
    border-radius: 2px;
    transition: width 0.5s;
}

.v3-vm-card:hover .v3-vm-card__accent {
    width: 80px;
}

.v3-vm-card__icon {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(175, 133, 81, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #af8551;
    font-size: 1rem;
    transition: background 0.4s, color 0.4s, transform 0.4s;
    z-index: 1;
}

.v3-vm-card:hover .v3-vm-card__icon {
    background: #af8551;
    color: #fff;
    transform: scale(1.15) rotate(-5deg);
}

/* Alt Card Variant */
.v3-vm-card--alt {
    background: #1a1a1a;
}

.v3-vm-card--alt .v3-vm-card__num {
    color: rgba(255, 255, 255, 0.04);
}

.v3-vm-card--alt .v3-vm-card__badge {
    background: rgba(175, 133, 81, 0.15);
    color: #d4a96a;
}

.v3-vm-card--alt .v3-vm-card__content h3 {
    color: #fff;
}

.v3-vm-card--alt .v3-vm-card__content p {
    color: rgba(255, 255, 255, 0.55);
}

.v3-vm-card--alt .v3-vm-card__icon {
    background: rgba(175, 133, 81, 0.15);
    color: #d4a96a;
}

.v3-vm-card--alt:hover .v3-vm-card__icon {
    background: #af8551;
    color: #fff;
}

/* ═══ CHAPTER 03: Values Cards ═══ */
.v3-values {
    padding: 120px 0;
    background: transparent;
    overflow: hidden;
}

.v3-values__header {
    margin-bottom: 50px;
}

.v3-val-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v3-val-card {
    background: #ffffff;
    /* Default to white */
    border-radius: 24px;
    padding: 45px 35px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s;
    border: 1px solid rgba(175, 133, 81, 0.08);
    display: flex;
    flex-direction: column;
    word-break: break-word;
}

/* Staggered Pattern: 03 and 05 are #fbf5ed */
.v3-val-grid .v3-val-card:nth-child(3),
.v3-val-grid .v3-val-card:nth-child(5) {
    background: #fbf5ed;
}

.v3-val-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(175, 133, 81, 0.1);
}

.v3-val-card__bg-num {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 7rem;
    font-weight: 900;
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    color: #af8551;
    z-index: 0;
}

.v3-val-card__icon,
.v3-val-card h4,
.v3-val-card p {
    position: relative;
    z-index: 1;
}

.v3-val-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(175, 133, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #af8551;
    font-size: 1.1rem;
    margin-bottom: 20px !important;
    flex-shrink: 0;
    transition: background 0.4s, color 0.4s, transform 0.4s;
}

.v3-val-card:hover .v3-val-card__icon {
    background: #af8551;
    color: #fff;
    transform: scale(1.1);
}

.v3-val-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 15px 0 10px;
    color: #111;
}

.v3-val-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #888;
    margin: 0;
}

.v3-val--hero {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, #f8f1e8, #f0e6d6) !important;
    color: #222;
    padding: 55px 45px;
    border: 1px solid rgba(175, 133, 81, 0.15);
}

.v3-val--hero h4 {
    color: #222;
    font-size: 1.6rem;
}

.v3-val--hero p {
    color: #666;
}

.v3-val--hero .v3-val-card__bg-num {
    color: #af8551;
    opacity: 0.06;
    font-size: 10rem;
}

.v3-val--hero .v3-val-card__icon {
    background: rgba(175, 133, 81, 0.2);
}

.v3-val--hero:hover .v3-val-card__icon {
    background: #af8551;
}

.v3-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-hero-stat {
    text-align: center;
}

.v3-hero-stat__num {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #af8551;
    line-height: 1.2;
}

.v3-hero-stat__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-top: 5px;
}

.v3-hero-quote {
    margin: 45px 0 0;
    padding: 0;
    font-style: italic;
    font-size: 18px;
    color: #af8551;
    border: none;
    opacity: 1;
    text-align: center;
    font-weight: 700;
}

.v3-val--accent {
    border-color: rgba(175, 133, 81, 0.1);
}

.v3-val--accent .v3-val-card__icon {
    background: rgba(175, 133, 81, 0.12);
}

.v3-usage {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.v3-usage__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.v3-usage__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3-usage__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.92) 100%);
}

.v3-usage__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.v3-usage-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.v3-usage-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
}

.v3-usage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(175, 133, 81, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.v3-usage-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(175, 133, 81, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a96a;
    font-size: 1.2rem;
    margin-bottom: 25px;
    transition: background 0.4s, color 0.4s, transform 0.4s;
}

.v3-usage-card:hover .v3-usage-card__icon {
    background: #af8551;
    color: #fff;
    transform: scale(1.1);
}

.v3-usage-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.v3-usage-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    position: relative;
    z-index: 1;
}

.v3-usage-card__num {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

/* ═══ RESPONSIVE OVERRIDES ═══ */
@media (max-width: 991px) {
    .v3-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v3-vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v3-val-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v3-val--hero {
        grid-column: span 2;
        grid-row: span 1;
    }

    .v3-usage-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }



    .v3-story__content {
        padding-left: 0;
    }

    .v3-vm-card {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .v3-story {
        padding: 80px 0 60px;
    }

    .v3-vision {
        padding: 0;
    }

    .v3-values {
        padding: 80px 0;
    }

    .v3-usage {
        padding: 80px 0;
    }

    .v3-val-grid {
        grid-template-columns: 1fr;
    }

    .v3-val--hero {
        grid-column: span 1;
    }

    .v3-val-card {
        padding: 35px 28px;
    }

    .v3-usage-cards {
        grid-template-columns: 1fr;
    }

    .v3-vision__title {
        font-size: 2.5rem;
    }

    .v3-heading {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .v3-story__tech-tag {
        margin-left: 15px;
        margin-top: -30px;
        max-width: 240px;
    }
}

.pxl-contact-creative {
    background: #fff;
    overflow: hidden;
}

.creative-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    letter-spacing: 0;
}

.creative-heading em {
    color: #af8551;
    font-style: italic;
    font-weight: 300;
}

.contact-grid-v4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-node {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 50px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-node:hover {
    background: #fff;
    border-color: #af8551;
    box-shadow: 0 40px 80px rgba(175, 133, 81, 0.1);
    transform: translateY(-10px);
}

.node-icon {
    font-size: 2.5rem;
    color: #eee;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.contact-node:hover .node-icon {
    color: #af8551;
}

.node-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #af8551;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-node h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.node-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
}

.phone-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-link {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.phone-link span {
    color: #af8551;
    font-weight: 300;
}

.email-link {
    font-size: 1.4rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.node-social {
    display: flex;
    gap: 20px;
}

.node-social a {
    color: #111;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.node-social a:hover {
    color: #af8551;
}

.contact-map-container {
    position: relative;
    line-height: 0;
    margin-top: 100px;
}

.map-overlay-box {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 10;
    background: #111;
    color: #fff;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.map-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.map-status {
    font-size: 0.7rem;
    color: #af8551;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #af8551;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .creative-heading {
        font-size: 2.5rem;
    }

    .contact-grid-v4 {
        grid-template-columns: 1fr;
    }

    .contact-node {
        padding: 30px;
    }

    .map-overlay-box {
        top: 20px;
        left: 20px;
        padding: 15px;
    }

    .phone-link {
        font-size: 1.2rem;
    }
}

.contact-header {
    position: relative;
    padding-bottom: 30px;
}

.contact-header__bg-text {
    position: absolute;
    top: -50px;
    left: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    letter-spacing: 0;
    user-select: none;
}

.header-main-wrap {
    position: relative;
    z-index: 2;
}

.header-accent-line {
    width: 80px;
    height: 3px;
    background: #af8551;
    margin-top: 25px;
}

.header-description {
    padding-left: 30px;
    border-left: 1px solid #eee;
}

@media (max-width: 991px) {
    .contact-header__bg-text {
        font-size: 5rem;
        top: -20px;
    }

    .header-description {
        padding-left: 0;
        border-left: none;
        margin-top: 20px;
    }
}

.pxl-katalog-v3 {
    background: #fafafa;
}

.viewer-glass-frame {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.viewer-header {
    background: #111;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.viewer-dots {
    display: flex;
    gap: 8px;
}

.viewer-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.viewer-title {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0;
}

.viewer-actions a {
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.viewer-actions a:hover {
    opacity: 1;
}

.viewer-body {
    background: #eee;
    line-height: 0;
}

.katalog-features-v4 .premium-feature-card {
    position: relative;
    background: #ffffff;
    padding: 50px 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.katalog-features-v4 .premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdfdfd 0%, #f5f5f5 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.katalog-features-v4 .premium-feature-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.katalog-features-v4 .premium-feature-card:hover::before {
    opacity: 1;
}

.card-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s ease;
}

.premium-feature-card:hover .card-number {
    color: rgba(175, 133, 81, 0.05);
    transform: scale(1.1) rotate(-5deg);
}

.card-content {
    position: relative;
    z-index: 1;
}

.f-icon-wrap {
    width: 60px;
    height: 60px;
    background: #f9f9f9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent-brand);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.premium-feature-card:hover .f-icon-wrap {
    background: var(--accent-brand);
    color: #fff;
    transform: rotateY(180deg);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0;
}

.card-title em {
    font-style: normal;
    color: var(--accent-brand);
    font-weight: 300;
}

.card-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 0;
}

.card-accent-line {
    width: 0;
    height: 2px;
    background: var(--accent-brand);
    margin-top: 25px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-feature-card:hover .card-accent-line {
    width: 60px;
}

.katalog-intro-v4 {
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.v4-badge-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(175, 133, 81, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #af8551;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #af8551;
    letter-spacing: 0;
}

.creative-heading-large {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #111;
    letter-spacing: 0;
    margin-bottom: 0;
}

.creative-heading-large em {
    color: #af8551;
    font-style: italic;
    font-weight: 300;
}

.intro-desc-wrap {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 600px;
}

.side-line {
    width: 2px;
    height: 60px;
    background: #af8551;
    flex-shrink: 0;
}

.intro-desc-wrap p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.download-counter-badge {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.btn-premium-download {
    display: inline-flex;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 5px 5px 5px 30px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #111;
}

.btn-premium-download .btn-txt {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-right: 20px;
}

.btn-premium-download .btn-icon {
    width: 45px;
    height: 45px;
    background: #af8551;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-premium-download:hover {
    background: #fff;
    color: #111;
    transform: translateX(5px);
}

.btn-premium-download:hover .btn-icon {
    transform: rotate(360deg);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .creative-heading-large {
        font-size: 2.8rem;
        letter-spacing: 0;
    }

    .intro-desc-wrap {
        gap: 20px;
    }

    .download-counter-badge {
        justify-content: flex-start;
    }

    .btn-premium-download {
        width: 100%;
        justify-content: space-between;
    }
}

.pxl-blog-section {
    padding: 50px !important;
    background: #fff;
}

.pxl-blog-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.blog-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 80px;
}

.blog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-item-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.blog-image-col {
    flex: 0 0 42%;
    max-width: 42%;
}

.blog-content-col {
    flex: 0 0 58%;
    max-width: 58%;
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 2.8;
}

.image-zoom-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-zoom-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-item:hover .image-zoom-wrapper img {
    transform: scale(1.08);
}

.blog-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #af8551;
    color: #fff;
    padding: 15px 30px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.meta-overlay-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
}

.blog-category {
    color: #fff;
}

.meta-sep {
    color: #555;
    font-weight: 300;
}

.blog-date {
    color: #fff;
    opacity: 0.8;
}

.blog-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111;
    letter-spacing: 0;
}

.blog-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #af8551;
}

.blog-excerpt {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
    max-width: 95%;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-meta-bottom {
    display: flex;
    gap: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #111;
    transition: all 0.3s ease;
}

.meta-item:hover .meta-icon {
    border-color: #af8551;
    color: #af8551;
}

.meta-text {
    font-size: 0.9rem;
    color: #111;
    font-weight: 600;
}

.read-more-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.read-more-link i {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.read-more-link:hover {
    color: #111;
}

.read-more-link:hover i {
    transform: translateX(8px);
}

/* Pagination */
.pxl-pagination-wrapper {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pxl-pagination-wrapper .page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pxl-pagination-wrapper .page-numbers.current {
    background: #111;
    color: #fff;
    border-color: #111;
}

.pxl-pagination-wrapper .page-numbers:hover:not(.current) {
    border-color: #111;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .post-content-inner h2{
    margin: 0 0 30px !important;
    }
    .pxl-blog-detail-hero {
    padding-bottom: 0 !important;
    }
    .pxl-blog-section {
        padding: 60px 0 !important
    }

    .pxl-blog-list {
        gap: 60px;
    }

    .blog-item {
        padding-bottom: 60px;
    }

    .blog-item-inner {
        flex-direction: column;
        gap: 30px;
    }

    .blog-image-col,
    .blog-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-excerpt {
        font-size: 1.05rem;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .blog-meta-bottom {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }
}

.blog-content-inner {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.blog-main-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.blog-title {
    flex: 0 0 60%;
    margin-bottom: 0 !important;
}

.blog-excerpt {
    flex: 0 0 40%;
    margin-bottom: 0 !important;
    font-size: 0.9rem !important;
    color: #777 !important;
    line-height: 1.6 !important;
}

.blog-footer {
    border-top: 1px solid #eee;
    padding-top: 25px !important;
}

.meta-overlay-inner .meta-sep {
    letter-spacing: 0;
    margin: 0 10px;
}

@media (max-width: 1199px) {
    .blog-main-content {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .blog-main-content {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .blog-title,
    .blog-excerpt {
        flex: 0 0 100%;
    }
}

.blog-image-col {
    flex: 0 0 35% !important;
    max-width: 35% !important;
}

.blog-content-col {
    flex: 0 0 65% !important;
    max-width: 65% !important;
}

.blog-item-inner {
    align-items: flex-start !important;
}

@media (max-width: 991px) {

    .blog-image-col,
    .blog-content-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.blog-content-row {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
}

.blog-main-content {
    width: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 0 !important;
}

.blog-excerpt-content {
    width: 50%;
    padding-left: 40px;
}

.blog-title {
    flex: none !important;
    width: 100% !important;
}

.blog-excerpt {
    flex: none !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .blog-content-row {
        flex-direction: column;
    }

    .blog-main-content,
    .blog-excerpt-content {
        width: 100% !important;
        padding-left: 0;
    }
}

.blog-footer {
    border-top: none !important;
    padding-top: 0 !important;
}

.blog-meta-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    width: 40%;
}

.read-more-link {
    margin-top: 0;
    padding-top: 30px;
}

@media (max-width: 991px) {
    .blog-meta-bottom {
        width: 100%;
    }

    .read-more-link {
        padding-top: 0;
    }
}

.blog-item {
    border-bottom: none !important;
}

.blog-content-col {
    border-bottom: 1px solid #eee;
    padding-bottom: 80px;
}

.blog-item:last-child .blog-content-col {
    border-bottom: none;
}

@media (max-width: 991px) {
    .blog-content-col {
        padding-bottom: 40px;
    }
}

/* --- Spacing Refinements to match Image --- */
.blog-content-inner {
    padding-top: 45px !important;
}

.blog-content-row {
    margin-bottom: 45px !important;
}

.blog-meta-bottom {
    padding-top: 25px !important;
}

.read-more-link {
    padding-top: 25px !important;
}

.blog-content-col {
    border-bottom: none !important;
}

.blog-content-inner {
    border-top: 1px solid #d5d5d5 !important;
    position: relative;
}

.blog-content-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #af8551;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    z-index: 1;
}

.blog-item:hover .blog-content-inner::before {
    width: 100%;
}

.pxl-blog-list {
    gap: 0 !important;
}

.blog-item {
    padding-bottom: 0 !important;
    margin-bottom: 50px !important;
    border-bottom: none !important;
}

.blog-content-col {
    padding-bottom: 0 !important;
}

.blog-item:last-child {
    margin-bottom: 0 !important;
}

.pxl-blog-detail-hero {
    background: #fff;
    padding-bottom: 70px;
}

.detail-hero-inner {
    display: flex;
    min-height: 75vh;
}

.detail-hero-image {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-brand-tag {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
    white-space: nowrap;
}

.detail-hero-content {
    flex: 0 0 40%;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.detail-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #af8551;
    margin-bottom: 30px;
}

.detail-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    color: #111;
    margin-bottom: 50px;
}

.detail-scroll-hint {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-scroll-hint span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #999;
}

.hint-line {
    width: 60px;
    height: 1px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.hint-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #af8551;
    animation: hint-slide 2s infinite;
}

@keyframes hint-slide {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

.pxl-blog-content-area {
    padding: 0 !important;
    background: #fff;
}

.blog-content-main {
    max-width: 900px;
    margin: 0 auto;
}

.post-content-inner {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
}

.post-content-inner p {
    margin-bottom: 40px;
}

.post-content-inner h2,
.post-content-inner h3 {
    font-weight: 700;
    color: #111;
    margin: 60px 0 30px;
}

.post-footer-creative {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.share-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #111;
}

.share-links {
    display: flex;
    gap: 20px;
}

.share-links a {
    color: #999;
    font-size: 1rem;
    transition: color 0.3s;
}

.share-links a:hover {
    color: #af8551;
}

.post-tags a {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    background: #f9f9f9;
    padding: 5px 15px;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.3s;
}

.post-tags a:hover {
    background: #111;
    color: #fff;
}

/* Post Navigation */
.pxl-post-navigation {
    border-top: 1px solid #eee;
}

.nav-row {
    display: flex;
}

.nav-item {
    flex: 1;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.nav-item.prev-post {
    border-right: 1px solid #eee;
}

.nav-item a {
    display: block;
    text-decoration: none;
}

.nav-item span {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #999;
    margin-bottom: 20px;
}

.nav-post-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    transition: transform 0.5s;
}

.nav-item:hover {
    background: #fafafa;
}

.nav-item:hover .nav-post-title {
    transform: translateX(10px);
    color: #af8551;
}

@media (max-width: 991px) {
    .detail-hero-inner {
        flex-direction: column;
    }

    .detail-hero-image,
    .detail-hero-content {
        flex: 0 0 100%;
    }

    .detail-hero-content {
        padding: 60px 25px;
    }

    .nav-row {
        flex-direction: column;
    }

    .nav-item.prev-post {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .detail-title {
        font-size: 2.5rem;
    }
}

.pxl-dealership-intro {
    padding: 60px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.intro-visual {
    position: relative;
}

.visual-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.9);
}

.visual-floating-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #af8551;
    color: #fff;
    padding: 40px;
    max-width: 300px;
    box-shadow: 0 30px 60px rgba(175, 133, 81, 0.3);
}

.floating-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.floating-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.intro-text-content {
    padding-right: 0;
}

.section-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    color: #af8551;
    margin-bottom: 20px;
    display: block;
}

.intro-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 40px;
}

.intro-body-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

/* Dealer Tiers Section */
.pxl-dealer-tiers {
    padding: 60px 0;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tier-card {
    background: #fff;
    padding: 50px 40px;
    border: 1px solid #eee;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #af8551;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.tier-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.tier-card:hover::before {
    transform: scaleX(1);
}

.tier-icon-wrap {
    font-size: 2.5rem;
    color: #af8551;
    margin-bottom: 30px;
}

.tier-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.tier-condition {
    font-size: 0.85rem;
    font-weight: 700;
    color: #999;
    margin-bottom: 20px;
    display: block;
}

.tier-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.pxl-quality-principles {
    padding: 100px 0;
    background: #111;
    color: #fff;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.principle-item h4 {
    color: #af8551;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.principle-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

.pxl-dealer-form-section {
    padding: 60px 0;
    background: #fff;
}

.form-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: stretch;
}

.form-info-side,
.form-actual {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.form-info-side h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.form-info-side p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-node {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.node-icon {
    width: 50px;
    height: 50px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #af8551;
    border-radius: 50%;
}

.node-content h5 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
}

.node-content span {
    font-size: 1rem;
    color: #666;
}

.form-info-nodes,
.form-additional-nodes {
    margin-top: 40px;
}

.form-additional-nodes {
    display: flex;
    gap: 30px;
}

.form-additional-nodes .contact-node {
    margin-bottom: 0;
    flex: 1;
}

/* Premium Form Styling */
.premium-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group-full {
    grid-column: span 2;
}

.form-input-wrap {
    position: relative;
}

.form-input-wrap input,
.form-input-wrap select,
.form-input-wrap textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input-wrap input:focus,
.form-input-wrap select:focus,
.form-input-wrap textarea:focus {
    outline: none;
    border-bottom-color: #af8551;
}

.form-input-wrap label {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #999;
    pointer-events: none;
    transition: all 0.3s;
}

.form-input-wrap input:focus+label,
.form-input-wrap input:not(:placeholder-shown)+label {
    top: -15px;
    font-size: 0.7rem;
    color: #af8551;
}

.btn-form-submit {
    grid-column: span 2;
    background: #111;
    color: #fff;
    border: none;
    padding: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-form-submit:hover {
    background: #af8551;
}

@media (max-width: 991px) {

    .intro-grid,
    .form-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .btn-form-submit {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .visual-main-img {
        height: 400px;
    }

    .visual-floating-card {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* --- Plise Perde Creative Product Grid --- */
.pxl-product-grid-creative {
    padding: 160px 0 100px;
    /* Increased top padding */
    background: #fff;
    overflow: hidden;
    position: relative;
    background-image:
        radial-gradient(rgba(175, 133, 81, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.grid-header {
    margin-bottom: 100px;
    max-width: 800px;
}

.creative-product-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.product-item-creative {
    position: relative;
    grid-column: span 4;
    margin-bottom: 80px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-visual {
    position: relative;
    width: 100%;

    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 30px;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.product-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.view-detail {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #000;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
}

.product-meta {
    position: relative;
    padding-left: 50px;
}

.product-num {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-brand);
    opacity: 0.4;
}

.product-name {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.product-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.product-item-creative:hover .product-visual img {
    transform: scale(1.1);
}

.product-item-creative:hover .product-overlay {
    opacity: 1;
}

.product-item-creative:hover .product-link {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-item-creative:hover .product-name {
    color: var(--accent-brand);
}

@media (max-width: 1024px) {
    .product-item-creative {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .product-item-creative {
        grid-column: span 12;
    }

    .pxl-product-grid-creative {
        padding: 100px 0 60px;
    }
}


.blueprint-decor-wrap {
    position: relative;
    width: 100%;
}

.blueprint-line-h {
    position: absolute;
    height: 1px;
    background: rgba(175, 133, 81, 0.1);
    width: 100%;
    left: 0;
}

.blueprint-line-v {
    position: absolute;
    width: 1px;
    background: rgba(175, 133, 81, 0.1);
    height: 100%;
    top: 0;
}

/* Plise Intro Section */
.pxl-plise-intro {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.intro-content-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-visual-large {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.intro-visual-large img {
    width: 100%;
    display: block;
}

.intro-stats-floating {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 40px;
}

.intro-stat-item span {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-brand);
}

.intro-stat-item label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

.intro-text-side h2 {
    font-size: 52px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.intro-text-side p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.pxl-product-grid-creative.unified {
    padding-top: 60px;
}

/* Plise Features Section */
.pxl-plise-features {
    padding: 100px 0;
    background: #fbfbfb;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card-modern {
    padding: 50px;
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card-modern:hover {
    border-color: var(--accent-brand);
    transform: translateY(-10px);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-brand);
    margin-bottom: 30px;
}

.feature-card-modern h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card-modern p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pxl-plise-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-inner p {
    opacity: 0.7;
    margin-bottom: 40px;
}

.btn-plise-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-brand);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-plise-cta:hover {
    background: #fff;
    color: #000;
}

/* Responsive Unified */
@media (max-width: 1200px) {
    .intro-stats-floating {
        right: 0;
    }
}

@media (max-width: 992px) {
    .intro-content-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .intro-text-side h2 {
        font-size: 36px;
    }

    .intro-stats-floating {
        position: static;
        margin-top: 20px;
        justify-content: space-between;
    }
}



.product-item-creative {
    perspective: 1000px;
}



.product-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-brand);
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
}

.product-item-creative:hover .product-visual::before {
    opacity: 0.05;
}

.product-item-creative:hover .product-visual {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-brand);
}

.product-num {
    opacity: 0.15;
    font-size: 60px;
    left: -20px;
    top: -30px;
    transition: var(--transition);
}

.product-item-creative:hover .product-num {
    opacity: 0.3;
    transform: translateX(10px);
}

.product-name {
    font-size: 26px;
    font-weight: 700;
}

.product-excerpt {
    font-size: 14px;
    letter-spacing: 0;
}

/* Product Card Link Reset */
.product-item-link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.product-item-link:hover {
    color: inherit !important;
}

.pxl-product-story {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.product-watermark {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-heading);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    letter-spacing: 40px;
    z-index: 1;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-visual {
    position: relative;
}

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
}

.story-content {
    max-width: 540px;
}

.story-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: none;
    color: #111;
}

.story-subtitle {
    font-size: 1.25rem;
    color: var(--accent-brand);
    margin-bottom: 40px;
    font-weight: 500;
    display: block;
    font-family: var(--font-main);
}

.story-desc-block {
    margin-bottom: 40px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text.en {
    font-style: italic;
    opacity: 0.7;
    font-size: 1rem;
    border-left: 2px solid #eee;
    padding-left: 20px;
}

.pxl-valeria-specs-v3 {
    padding: 140px 0;
    background: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blueprint-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

.specs-v3-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.specs-v3-header {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.header-technical-info {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.tech-id,
.tech-category {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent-brand);
    font-weight: 700;
    padding: 4px 10px;
    border: 1px solid rgba(175, 133, 81, 0.3);
}

.specs-v3-title {
    font-size: 56px;
    line-height: 0.9;
    margin-bottom: 30px;
    color: #fff;
}

.specs-v3-title .accent-text {
    color: var(--accent-brand);
    display: block;
}

.specs-v3-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 400px;
    line-height: 1.6;
}

.specs-v3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    /* Technical line feel */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-v3-card {
    background: #0f0f0f;
    padding: 45px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.spec-v3-card::before {
    content: attr(data-index);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.spec-v3-card:hover {
    background: #151515;
}

.spec-v3-card:hover .spec-v3-icon {
    transform: translateY(-5px);
    color: #fff;
}

.spec-v3-icon {
    font-size: 32px;
    color: var(--accent-brand);
    margin-bottom: 30px;
    transition: var(--transition);
}

.spec-v3-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.spec-v3-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: -0.5px;
}

.spec-v3-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.status-text {
    font-size: 10px;
    font-weight: 700;
    color: #00ff88;
}

.spec-v3-mini-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

/* Highlight Card */
.spec-v3-card.highlight {
    background: var(--accent-brand);
    color: #fff;
}

.spec-v3-card.highlight .spec-v3-label {
    color: rgba(255, 255, 255, 0.7);
}

.spec-v3-card.highlight .spec-v3-title {
    font-size: 32px;
}

.spec-v3-blueprint-line {
    margin-top: 25px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    position: relative;
    height: 20px;
}

.spec-v3-blueprint-line .measure {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    background: var(--accent-brand);
    padding: 0 10px;
}

/* Glass Card */
.spec-v3-card.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
}

.spec-v3-progress {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.progress-bar {
    height: 100%;
    background: var(--accent-brand);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}

@media (max-width: 1200px) {
    .specs-v3-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .specs-v3-header {
        position: static;
    }
}

@media (max-width: 768px) {
    .specs-v3-grid {
        grid-template-columns: 1fr;
    }

    .specs-v3-title {
        font-size: 42px;
    }

    .spec-v3-card {
        padding: 30px;
    }
}


/* Fabric Gallery */
.pxl-valeria-gallery {
    padding: 120px 0;
}

.texture-showcase {
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.texture-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: contrast(1.05);
}

.texture-zoom-overlay {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-50%);
    background: #fff;
}

.texture-zoom-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(2);
}

.fabric-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.fabric-item {
    position: relative;
}

.fabric-swatch {
    aspect-ratio: 1;
    overflow: hidden;
    background: #eee;
    margin-bottom: 15px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.fabric-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.fabric-item:hover .fabric-swatch {
    border-color: var(--accent-brand);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.fabric-item:hover .fabric-swatch img {
    transform: scale(1.1);
}

.fabric-name {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .specs-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .fabric-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-content {
        max-width: 100%;
        text-align: center;
    }

    .story-text.en {
        text-align: left;
    }

    .texture-zoom-overlay {
        display: none;
    }
}

@media (max-width: 768px) {
    .specs-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .fabric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-content h2 {
        font-size: 2.5rem;
    }
}

.specs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.spec-item {
    flex: 0 0 calc(25% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .spec-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .spec-item {
        flex: 0 0 100%;
    }
}

.pxl-plise-heritage {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.heritage-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    line-height: 1;
    z-index: 1;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.heritage-visual {
    position: relative;
}

.heritage-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.capacity-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-dark);
    color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.capacity-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-brand);
}

.capacity-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.heritage-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--bg-dark);
}

.heritage-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.pxl-plise-pillars {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.pillar-card {
    background: #fff;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.pillar-card:hover {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    transform: translateY(-10px);
}

.pillar-card:hover .pillar-title,
.pillar-card:hover .pillar-icon {
    color: #fff;
}

.pillar-card:hover .pillar-num {
    color: var(--accent-brand);
    opacity: 1;
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent-brand);
    margin-bottom: 20px;
    opacity: 0.6;
    transition: var(--transition);
}

.pillar-icon {
    font-size: 32px;
    color: var(--accent-brand);
    margin-bottom: 30px;
    transition: var(--transition);
}

.pillar-title {
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition);
}

.pillar-card.wide {
    grid-column: span 2;
}

/* Mechanism Section */
.pxl-plise-mechanism {
    padding: 0 0 40px;
    background: #fff;
    position: relative;
}

.mechanism-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.mechanism-content {
    order: 2;
}

.mechanism-visual {
    order: 1;
    position: relative;
}

.mechanism-visual img {
    width: 100%;
    height: auto;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.glass-tech-card {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 320px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.glass-tech-card h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--accent-brand);
}

.glass-tech-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Usage Spectrum Section */
.pxl-plise-usage {
    padding: 70px 0 0;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    z-index: 2;
}

.usage-header {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.usage-title h2 {
    font-size: 48px;
    color: #fff;
}

.usage-limits {
    display: flex;
    gap: 40px;
}

.limit-item {
    border-left: 2px solid var(--accent-brand);
    padding-left: 20px;
}

.limit-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.limit-label {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.5;
    letter-spacing: 1px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.usage-card {
    background: var(--bg-dark);
    padding: 40px;
    transition: var(--transition);
}

.usage-card:hover {
    background: #1a1a1a;
}

.usage-icon {
    font-size: 24px;
    color: var(--accent-brand);
    margin-bottom: 25px;
}

.usage-card h4 {
    font-size: 16px;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .heritage-grid, .mechanism-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillar-card.wide {
        grid-column: span 2;
    }
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .glass-tech-card {
        position: static;
        transform: none;
        margin-top: -40px;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .heritage-content h2, .usage-title h2 {
        font-size: 36px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .pillar-card.wide {
        grid-column: span 1;
    }
    .usage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .usage-grid {
        grid-template-columns: 1fr;
    }
}

.pxl-plise-pillars-v2 {
    padding: 70px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pillars-v2-header {
    margin-bottom: 60px;
}

.pillars-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #f0f0f0;
}

.pillar-node {
    padding: 80px 50px;
    border-right: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #fff;
    overflow: hidden;
}

.pillar-node:last-child {
    border-right: none;
}

.pillar-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar-node:hover {
    background: #fafafa;
}

.pillar-node:hover::before {
    transform: scaleX(1);
}

.node-index {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ccc;
    display: block;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.node-icon {
    font-size: 42px;
    color: #111;
    margin-bottom: 40px;
    transition: transform 0.6s ease;
}

.pillar-node:hover .node-icon {
    transform: translateY(-10px) scale(1.1);
    color: var(--accent-brand);
}

.node-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}

.node-bg-text {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    transition: all 0.6s ease;
}

.pillar-node:hover .node-bg-text {
    transform: translate(-10px, -10px);
    color: rgba(0, 0, 0, 0.04);
}

@media (max-width: 1200px) {
    .pillars-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillar-node:nth-child(2) {
        border-right: none;
    }
    .pillar-node:nth-child(1), .pillar-node:nth-child(2) {
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 768px) {
    .pillars-v2-grid {
        grid-template-columns: 1fr;
    }
    .pillar-node {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 60px 40px;
    }
    .pillar-node:last-child {
        border-bottom: none;
    }
    .node-bg-text {
        font-size: 80px;
    }
}
