:root {
    --primary-color: #ff6a00;
    --secondary-color: #111111;
    --text-color: #333333;
    --text-light: #ffffff;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: #f9f9f9;
}

/* ── Top Bar ── */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 14px;
    height: 40px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 0 40px;
    height: 100%;
}

.top-bar-right {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    padding: 0 40px;
    height: 100%;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
    font-weight: 600;
}

.top-bar-right span {
    margin-right: 15px;
}

.top-bar-right a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Header ── */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(255, 106, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.18);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
}

.header-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff) drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff) drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.5));
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary-color);
}

.btn {
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ── Hero Slider ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #0a0a0a;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

.slide-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.60) 50%, rgba(10, 10, 10, 0.22) 100%);
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 10;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.45);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-arrow:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 28px rgba(255, 106, 0, 0.55);
}

.slider-prev {
    left: 28px;
}

.slider-next {
    right: 28px;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 5px;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55) saturate(0.9) contrast(1.1);
    transform: scale(1.04);
    transition: transform 20s ease;
    will-change: transform;
}

.hero.video-fallback {
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-overlay-gradient {
    background: linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.60) 45%, rgba(10, 10, 10, 0.20) 100%);
    z-index: 1;
}

.hero-overlay-vignette {
    background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.hero-overlay-scanlines {
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 4px);
    z-index: 3;
    opacity: 0.6;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    animation: floatParticle linear infinite;
    box-shadow: 0 0 6px var(--primary-color);
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: var(--op, 0.3);
    }

    50% {
        transform: translateY(-55px) translateX(-10px);
        opacity: calc(var(--op, 0.3) * 0.5);
    }

    100% {
        transform: translateY(-80px) translateX(0);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    color: var(--text-light);
    text-align: center;
    animation: heroContentIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 5s both;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.eyebrow-line {
    flex: 0 0 40px;
    height: 2px;
    background: var(--primary-color);
    display: inline-block;
}

.hero-heading {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
}

.hero-highlight {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.5;
    border-radius: 2px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(220, 220, 220, 0.92);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.35);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.07);
}

.hero-buttons .btn-outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(200, 200, 200, 0.8);
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
}

/* ── About Section ── */
.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
}

.container-center {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 20px;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more-link:hover {
    text-decoration: underline;
}

.about-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.about-left,
.about-right {
    flex: 1;
}

.about-video-placeholder {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-video-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.play-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.year-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 32px;
    font-weight: 800;
    border-radius: 4px;
}

.about-text {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.competency-cards {
    display: flex;
    gap: 20px;
}

.comp-card {
    flex: 1;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.comp-img-wrapper {
    height: 150px;
    overflow: hidden;
}

.comp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.comp-card:hover .comp-img-wrapper img {
    transform: scale(1.1);
}

.comp-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.comp-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.comp-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.small-btn {
    padding: 8px 16px;
    font-size: 14px;
    text-align: center;
}

/* ── Working Process ── */
.working-process {
    background-color: #f2f2f2;
}

.process-subtitle {
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

.process-step:not(:last-child)::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: -15px;
    color: var(--primary-color);
    font-size: 24px;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition: border-color 0.3s;
}

.process-step:hover .step-icon-wrapper {
    border-color: var(--primary-color);
    border-style: solid;
}

.step-icon {
    font-size: 32px;
    color: var(--secondary-color);
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.process-step p {
    font-size: 13px;
    color: #777;
}

/* ── Industries ── */
.industries-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 40px 0;
}

.industries-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85);
}

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

.industries-subtitle {
    margin-bottom: 40px;
    color: #ddd;
}

.industries-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ind-card {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: #fff;
    overflow: hidden;
    position: relative;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.ind-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.ind-label {
    background: #fff;
    color: var(--secondary-color);
    text-align: center;
    padding: 20px 15px 15px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.ind-label::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 20px 20px 20px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

/* ── Clients ── */
.clients-section {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 40px 0 80px;
}

.clients-subtitle {
    margin-bottom: 20px;
    color: #ccc;
}

.clients-marquee-container {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-left-to-right 40s linear infinite;
}

.clients-marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-left-to-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.client-logo {
    background: #fff;
    width: 220px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    flex-shrink: 0;
    padding: 10px 15px;
}

.client-logo:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.22);
}

.client-logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── Why Choose Us ── */
.why-choose-us {
    background-color: #fff;
    padding: 60px 0;
}

.why-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 1.05px;
    position: relative;
    display: inline-block;
}

.why-3d-underline {
    width: 80px;
    height: 6px;
    background: linear-gradient(to bottom, #ffa100 0%, #ff6a00 50%, #b34a00 100%);
    border-radius: 3px;
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.45),
        0 2px 4px rgba(255, 106, 0, 0.25),
        0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 12px auto 24px;
}

.why-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-icon {
    font-size: 40px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.why-content p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* ── Scroll Reveal ── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.process-step.reveal-on-scroll:nth-child(1) {
    transition-delay: 0.05s;
}

.process-step.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.15s;
}

.process-step.reveal-on-scroll:nth-child(3) {
    transition-delay: 0.25s;
}

.process-step.reveal-on-scroll:nth-child(4) {
    transition-delay: 0.35s;
}

.process-step.reveal-on-scroll:nth-child(5) {
    transition-delay: 0.45s;
}

.process-step.reveal-on-scroll:nth-child(6) {
    transition-delay: 0.55s;
}

.ind-card.reveal-on-scroll:nth-child(1) {
    transition-delay: 0.05s;
}

.ind-card.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.18s;
}

.ind-card.reveal-on-scroll:nth-child(3) {
    transition-delay: 0.31s;
}

.ind-card.reveal-on-scroll:nth-child(4) {
    transition-delay: 0.44s;
}

.why-item.reveal-on-scroll:nth-child(1) {
    transition-delay: 0.05s;
}

.why-item.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.18s;
}

.why-item.reveal-on-scroll:nth-child(3) {
    transition-delay: 0.31s;
}

.why-item.reveal-on-scroll:nth-child(4) {
    transition-delay: 0.44s;
}

.comp-card.reveal-on-scroll:nth-child(1) {
    transition-delay: 0.05s;
}

.comp-card.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.about-section::before,
.working-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.about-section,
.working-process {
    position: relative;
}

/* ── Footer ── */
.footer {
    background-color: #0b132b;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.about-col {
    flex: 2;
}

.footer-logo {
    max-width: 280px;
    margin-bottom: -10px;
    filter: drop-shadow(0 0 2px #fff);
}

.about-col p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

.link-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.link-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.link-col ul {
    list-style: none;
    padding: 0;
}

.link-col ul li {
    margin-bottom: 12px;
}

.link-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-col ul li a:hover {
    color: var(--primary-color);
}

.link-col ul li a i {
    font-size: 10px;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 12px;
    color: #888;
    background-color: #070d1e;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ── Cinematic Intro ── */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOutIntro 1s ease-in-out 4s forwards;
}

.intro-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 8vh 0;
    box-sizing: border-box;
}

.intro-spacer {
    height: 140px;
    width: 100%;
}

.logo-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-logo {
    width: 260px;
    height: auto;
    opacity: 0;
    transform: scale(0.8) rotateY(-30deg);
    animation: cinematicLogo 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.70));
}

.intro-text-block {
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1s ease-out 1.5s forwards;
}

.intro-tagline {
    color: #ff6a00;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1s ease-out 2s forwards;
}

@keyframes cinematicLogo {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateY(-30deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.05) rotateY(10deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutIntro {
    0% {
        opacity: 1;
        visibility: visible;
    }

    99% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCTS SECTION — Black background · White cards · Visible 3D
══════════════════════════════════════════════════════════════════ */
.products-section {
    background: #060606;
    padding: 90px 0 110px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 106, 0, 0.18);
    border-bottom: 1px solid rgba(255, 106, 0, 0.18);
}

/* Soft ambient glow orbs on black bg */
.products-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
}

.products-glow-orb-1 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.10) 0%, transparent 70%);
    top: -160px;
    left: -80px;
    animation: orbFloat 14s ease-in-out infinite;
}

.products-glow-orb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 160, 255, 0.07) 0%, transparent 70%);
    bottom: -120px;
    right: -60px;
    animation: orbFloat 18s ease-in-out infinite reverse;
}

.products-glow-orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbPulse 9s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-35px);
    }
}

@keyframes orbPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

.products-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.04) 3px, rgba(0, 0, 0, 0.04) 4px);
}

.products-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.prod-particle {
    position: absolute;
    border-radius: 50%;
    animation: prodParticleFloat linear infinite;
}

@keyframes prodParticleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-120px) translateX(var(--drift, 20px));
        opacity: 0;
    }
}

.products-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Header text — white on black */
.products-header {
    text-align: center;
    margin-bottom: 48px;
}

.products-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow-line-left,
.eyebrow-line-right {
    flex: 0 0 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.eyebrow-line-right {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.products-heading {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.08;
}

.products-heading-accent {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.products-heading-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff9500, var(--primary-color));
    border-radius: 2px;
    animation: shimmer 2.5s linear infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.products-subtitle-text {
    font-size: 16px;
    color: rgba(190, 200, 215, 0.85);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

/* Filter tabs */
.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.products-section .filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(210, 220, 230, 0.85);
    padding: 9px 20px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 13px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}

.products-section .filter-btn:hover {
    background: rgba(255, 106, 0, 0.1);
    border-color: rgba(255, 106, 0, 0.35);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 106, 0, 0.15);
}

.products-section .filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
}

/* Grid */
.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

/* ── WHITE PRODUCT CARD on black section ── */
.products-section .product-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease;
    will-change: transform;
}

/* Orange accent line top edge on hover */
.products-section .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 30%, #ff9500 50%, var(--primary-color) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 5;
}

.products-section .product-card:hover::before {
    opacity: 1;
}

.products-section .product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 106, 0, 0.4);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), 0 0 35px rgba(255, 106, 0, 0.12);
}

/* Shine sweep */
.product-card-shine {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
    background-size: 200% 100%;
    background-position: 150% center;
    pointer-events: none;
    z-index: 6;
    transition: background-position 0.55s ease;
}

.products-section .product-card:hover .product-card-shine {
    background-position: -50% center;
}

/* ── 3D Viewport — LIGHT background so model is always visible ── */
.products-section .product-visual {
    position: relative;
    height: 260px;
    /* Light gradient bg — the WebGL renderer also clears to #f5f5f5 */
    background: linear-gradient(160deg, #f0f0f0 0%, #e8e8e8 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Very subtle warm glow behind 3D model */
.products-section .product-visual::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.10) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.products-section .product-card:hover .product-visual::after {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.18) 0%, transparent 70%);
}

/* Pedestal glow beneath model */
.product-pedestal {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.25), transparent);
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
    z-index: 2;
    animation: pedestalPulse 3s ease-in-out infinite;
}

@keyframes pedestalPulse {

    0%,
    100% {
        opacity: 0.5;
        width: 100px;
    }

    50% {
        opacity: 0.85;
        width: 140px;
    }
}

.product-spotlight {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255, 106, 0, 0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(1px);
}

.products-section .product-card:hover .product-spotlight {
    opacity: 0.8;
}

.product-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.04), transparent);
    pointer-events: none;
    z-index: 2;
}

.viewport-3d {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    cursor: grab;
}

.viewport-3d:active {
    cursor: grabbing;
}

/* Blueprint SVG fallback */
.blueprint-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.5s ease;
    padding: 25px;
}

.blueprint-fallback svg {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 160px;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.35));
    animation: blueprintGlow 3s ease-in-out infinite alternate;
}

@keyframes blueprintGlow {
    from {
        filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.3));
    }

    to {
        filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.6));
    }
}

/* Tech spec panel — dark on white card */
.products-section .tech-spec-panel {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(4px);
    pointer-events: none;
    letter-spacing: 0.4px;
}

/* Card controls — dark style on white card */
.products-section .card-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 6px;
}

.products-section .control-btn {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #444;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.products-section .control-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
    transform: scale(1.1);
}

.products-section .control-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Product info — dark text on white card */
.products-section .product-info {
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 12px;
}

.products-section .product-info h3 {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.products-section .product-info p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.products-section .product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.products-section .tag {
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 20px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 106, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-section .btn-quote {
    padding: 8px 16px;
    font-size: 12px;
    background: #111;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.products-section .btn-quote:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
}

/* Catalog CTA */
.catalog-cta {
    text-align: center;
    margin-top: 10px;
}

.catalog-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.cta-stat-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 25px rgba(255, 106, 0, 0.35);
}

.cta-stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(160, 175, 195, 0.75);
    margin-top: 5px;
}

.cta-stat-sep {
    width: 1px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
}

.products-section .btn-secondary.catalog-trigger {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 106, 0, 0.35);
    color: #fff;
    padding: 14px 36px;
    font-weight: 800;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.1);
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.products-section .btn-secondary.catalog-trigger:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.3);
}

.products-section .btn-secondary.catalog-trigger i {
    color: inherit;
}

/* Scroll reveal */
.reveal-products {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-products.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.products-section .product-card.reveal-products:nth-child(1) {
    transition-delay: 0.05s;
}

.products-section .product-card.reveal-products:nth-child(2) {
    transition-delay: 0.11s;
}

.products-section .product-card.reveal-products:nth-child(3) {
    transition-delay: 0.17s;
}

.products-section .product-card.reveal-products:nth-child(4) {
    transition-delay: 0.23s;
}

.products-section .product-card.reveal-products:nth-child(5) {
    transition-delay: 0.29s;
}

.products-section .product-card.reveal-products:nth-child(6) {
    transition-delay: 0.35s;
}

.products-section .product-card.reveal-products:nth-child(7) {
    transition-delay: 0.41s;
}

.products-section .product-card.reveal-products:nth-child(8) {
    transition-delay: 0.47s;
}

/* ── Glassmorphic Modals ── */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 10, 0.88);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.product-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.glass-card {
    background: rgba(18, 20, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
    position: relative;
    max-width: 550px;
    width: 90%;
    padding: 35px;
    color: #fff;
    transform: translateY(28px);
    transition: transform 0.35s ease;
}

.product-modal.active .glass-card {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: color 0.25s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px;
}

.modal-header p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: var(--font-family);
    box-sizing: border-box;
    transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.15);
}

.w-100 {
    width: 100%;
}

/* Catalog modal */
.catalog-modal-content {
    max-width: 900px !important;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px !important;
}

.catalog-search-bar {
    position: relative;
    margin-bottom: 28px;
    text-align: left;
}

.catalog-search-bar i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
}

.catalog-search-bar input {
    width: 100%;
    padding: 14px 18px 14px 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: var(--font-family);
    box-sizing: border-box;
}

.catalog-search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.catalog-item {
    display: flex;
    gap: 14px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-align: left;
    transition: border-color 0.25s;
}

.catalog-item:hover {
    border-color: rgba(255, 106, 0, 0.3);
    background: rgba(255, 255, 255, 0.04) !important;
}

.catalog-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.catalog-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.catalog-item-details h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.catalog-item-details p {
    margin: 0;
    font-size: 11px;
    color: #9ca3af;
}

.catalog-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.catalog-tag {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-quote-sm {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-quote-sm:hover {
    background: var(--primary-color);
    color: #fff;
}

.catalog-modal-content::-webkit-scrollbar {
    width: 7px;
}

.catalog-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.catalog-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.catalog-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 106, 0, 0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .top-bar {
        flex-direction: column;
        height: auto;
    }

    .top-bar-left,
    .top-bar-right {
        width: 100%;
        padding: 10px;
        justify-content: center;
    }

    .top-bar-right {
        clip-path: none;
    }

    .about-container {
        flex-direction: column;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-flow {
        gap: 30px;
    }

    .hero-slide {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-heading {
        font-size: clamp(36px, 10vw, 54px);
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 28px;
    }

    .competency-cards {
        flex-direction: column;
    }

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

    .products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-cta-stats {
        gap: 0;
    }

    .cta-stat {
        padding: 0 18px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .catalog-modal-content {
        padding: 20px !important;
    }
}

@media (max-width: 600px) {
    .products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .products-inner {
        padding: 0 16px;
    }
}

/* ── Turnover Section ── */
.turnover-section {
    background-color: #fdfdfd;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.turnover-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.turnover-info h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.turnover-desc {
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-size: 15px;
}

.turnover-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 106, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.08);
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f1f1f1;
    border-radius: 8px;
    width: fit-content;
}

.legend-color-box {
    width: 12px;
    height: 12px;
    background: linear-gradient(to bottom, #ffa100, #ff6a00);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(255, 106, 0, 0.4);
}

.legend-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

/* 3D Column Chart Component */
.turnover-chart-wrapper {
    position: relative;
    background: #fff;
    padding: 40px 30px 60px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.turnover-chart-container {
    position: relative;
    height: 320px;
    width: 100%;
}

/* Y-Axis Guidelines */
.chart-y-axis {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    height: 320px;
    z-index: 1;
}

.y-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 0;
}

.y-label span {
    width: 35px;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-align: right;
    padding-right: 12px;
    transform: translateY(-1px);
}

.y-grid-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.04);
}

/* 3D Chart Stage */
.turnover-chart-stage {
    position: relative;
    height: 320px;
    margin-left: 45px;
    z-index: 2;
    perspective: 1000px;
}

.bars-container {
    transform-style: preserve-3d;
    transform: none;
    height: 100%;
    width: 100%;
    position: relative;
    padding: 0;
}

/* Flat Background Grid */
.chart-grid-floor {
    position: absolute;
    inset: 0;
    background-size: 50px 40px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    opacity: 0.8;
    pointer-events: none;
}

/* SVG Holographic Area & Line Graph */
.chart-line-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    transform-style: preserve-3d;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.turnover-chart-container.animated .chart-line-svg {
    transform: scaleY(1);
}

.chart-line {
    filter: drop-shadow(0 2px 4px rgba(255, 106, 0, 0.4));
}

/* Prism Layout and Nodes positioning */
.prism-wrapper {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 45px;
    transform: translateX(-50%);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* Line Connector (Vertical Neon Support Rods) */
.line-connector {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0%;
    background: linear-gradient(to top, rgba(255, 106, 0, 0.05), rgba(255, 106, 0, 0.5));
    border-left: 1px dashed rgba(255, 106, 0, 0.4);
    transition: height 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.turnover-chart-container.animated .line-connector {
    height: calc((var(--val) / 80) * 100%);
}

/* Prism Node (Floating 3D Cube Nodes) */
.prism-node {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 50%) translateZ(10px) rotateX(-20deg) rotateY(20deg);
    width: 18px;
    height: 18px;
    transform-style: preserve-3d;
    transition: bottom 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.turnover-chart-container.animated .prism-node {
    bottom: calc((var(--val) / 80) * 100%);
}

/* Node Faces */
.prism-node .face {
    position: absolute;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

/* Standard Premium Glowing Glass Node Faces */
.prism-node .face.front {
    transform: rotateY(0deg) translateZ(9px);
    background: rgba(255, 106, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.8);
}

.prism-node .face.back {
    transform: rotateY(180deg) translateZ(9px);
    background: rgba(255, 106, 0, 0.8);
}

.prism-node .face.left {
    transform: rotateY(-90deg) translateZ(9px);
    background: rgba(200, 80, 0, 0.8);
}

.prism-node .face.right {
    transform: rotateY(90deg) translateZ(9px);
    background: rgba(200, 80, 0, 0.8);
}

.prism-node .face.top {
    transform: rotateX(90deg) translateZ(9px);
    background: rgba(255, 161, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.prism-node .face.bottom {
    transform: rotateX(-90deg) translateZ(9px);
    background: rgba(150, 50, 0, 0.8);
}

/* Projected Future Glass Nodes Look */
.prism-node.projected .face.front {
    background: rgba(255, 161, 0, 0.4);
    border: 1.5px dashed rgba(255, 161, 0, 0.9);
    box-shadow: 0 0 15px rgba(255, 161, 0, 0.6);
}

.prism-node.projected .face.back {
    background: rgba(255, 161, 0, 0.3);
}

.prism-node.projected .face.left {
    background: rgba(220, 130, 0, 0.3);
}

.prism-node.projected .face.right {
    background: rgba(220, 130, 0, 0.3);
}

.prism-node.projected .face.top {
    background: rgba(255, 180, 50, 0.6);
    border: 1.5px dashed rgba(255, 180, 50, 0.9);
}

.prism-node.projected .face.bottom {
    background: rgba(180, 100, 0, 0.3);
}

/* Hover rotation highlight animations */
.prism-node:hover {
    transform: translate(-50%, 50%) translateZ(10px) scale(1.2) rotateX(-20deg) rotateY(45deg);
    cursor: pointer;
}

.prism-node:hover .face {
    filter: brightness(1.2);
}

/* Interactive Glassmorphic Tooltip */
.prism-node .tooltip {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%) translateZ(15px) scale(0.85);
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 106, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.prism-node:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateZ(15px) scale(1);
}

/* X-Axis Labels */
.prism-wrapper .x-label {
    position: absolute;
    bottom: -32px;
    font-size: 11px;
    font-weight: 700;
    color: #777;
    text-align: center;
    width: 80px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.prism-wrapper:hover .x-label {
    color: var(--primary-color);
}

/* ── Section Divider ── */
.section-divider {
    height: 1px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, rgba(255, 106, 0, 0.15) 30%, rgba(255, 106, 0, 0.15) 70%, transparent);
}

/* ── Interactive 3D Catalogues Section ── */
.catalogues-section {
    background-color: #fdfdfd;
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
}

.catalogues-subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.6;
}

.catalogues-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    margin-top: 40px;
    perspective: 1500px;
}

.catalogue-3d-card-wrapper {
    position: relative;
    width: 320px;
    height: 435px;
}

.catalogue-3d-card {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: rotateX(5deg) rotateY(-5deg);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.catalogue-3d-card::before {
    content: '';
    position: absolute;
    inset: 15px;
    background: rgba(0, 0, 0, 0.15);
    filter: blur(20px);
    transform: translateZ(-30px) translateY(15px);
    transition: all 0.6s ease;
    border-radius: 12px;
}

.book-container {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

/* Spine detailing */
.book-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    background: linear-gradient(to right, #222 0%, #444 30%, #111 60%, #333 100%);
    border-radius: 4px 0 0 4px;
    transform: rotateY(-90deg);
    transform-origin: left center;
    z-index: 5;
}

/* Inner Page styling */
.book-page {
    position: absolute;
    inset: 2px 2px 2px 10px;
    background: #fff;
    border-radius: 0 10px 10px 0;
    box-shadow: inset 3px 0 10px rgba(0, 0, 0, 0.08), 2px 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1;
    overflow: hidden;
}

.book-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 94%, rgba(0, 0, 0, 0.05) 95%, transparent 96%, rgba(0, 0, 0, 0.05) 97%, transparent 98%);
    pointer-events: none;
}

.page-content {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
}

.tech-grid {
    position: absolute;
    inset: 0;
    background-size: 15px 15px;
    background-image: linear-gradient(to right, rgba(0,0,0,0.01) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0,0,0,0.01) 1px, transparent 1px);
    opacity: 0.8;
}

.tech-spec-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin: 0 0 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.inner-spec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.inner-spec-list span {
    font-size: 11px;
    color: #444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-spec-list i {
    color: #00b3ff;
    font-size: 10px;
}

.action-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Front Cover styling */
.book-cover {
    position: absolute;
    inset: 0;
    transform-origin: left center;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.8s;
    z-index: 2;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(135deg, #0d0f12 0%, #1a1e24 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cover-tools {
    background: linear-gradient(135deg, #130f0a 0%, #241d14 100%);
}

.cover-content {
    padding: 30px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
}

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

.brand-sub {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
}

.premium-badge {
    background: linear-gradient(135deg, #00b3ff 0%, #0052cc 100%);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.badge-amber {
    background: linear-gradient(135deg, #ffa100 0%, #ff6a00 100%);
}

.gear-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 179, 255, 0.25);
    transition: all 0.3s ease;
}

.tools-icon {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 106, 0, 0.25);
}

.book-cover-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff);
    transition: transform 0.3s ease;
}

.catalogue-3d-card:hover .book-cover-logo {
    transform: scale(1.08);
}

.cover-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-body h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cover-body h2 {
    margin: 5px 0 12px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.cover-body .catalogue-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cover-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.page-count {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.doc-type {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cover-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0) 50%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
}

/* Hover effects */
.catalogue-3d-card:hover {
    transform: scale(1.03) rotateX(8deg) rotateY(-12deg);
}

.catalogue-3d-card:hover::before {
    transform: translateZ(-40px) translateY(20px);
    background: rgba(0, 0, 0, 0.25);
    filter: blur(25px);
}

.catalogue-3d-card:hover .book-cover {
    transform: rotateY(-115deg);
    box-shadow: 15px 5px 30px rgba(0,0,0,0.5);
}

.catalogue-3d-card:hover .cover-shine {
    transform: translateX(100%);
    transition: transform 0.8s ease;
}

/* Reflection overlay */
.card-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0 12px 12px 0;
    pointer-events: none;
    z-index: 3;
}

/* Catalogues Section Mobile Responsiveness */
@media (max-width: 991px) {
    .catalogues-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .catalogues-subtitle {
        margin-bottom: 35px;
    }
    .catalogues-grid {
        flex-direction: column;
        gap: 40px;
    }
    /* Smaller open angle on hover to prevent mobile screen clipping */
    .catalogue-3d-card:hover .book-cover {
        transform: rotateY(-45deg);
    }
}

/* Mobile Responsive overrides */
@media (max-width: 991px) {
    .turnover-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .turnover-chart-wrapper {
        padding: 40px 20px 50px 10px;
    }
}

@media (max-width: 580px) {
    .turnover-chart-stage {
        margin-left: 35px;
    }
    
    .y-label span {
        width: 25px;
        font-size: 10px;
        padding-right: 8px;
    }
    
    .bars-container {
        transform: none;
    }
    
    .prism-wrapper {
        width: 20px;
    }
    
    .prism-node {
        width: 12px;
        height: 12px;
    }
    
    .prism-node .face {
        width: 12px;
        height: 12px;
    }
    
    .prism-node .face.front { transform: rotateY(0deg) translateZ(6px); }
    .prism-node .face.back { transform: rotateY(180deg) translateZ(6px); }
    .prism-node .face.left { transform: rotateY(-90deg) translateZ(6px); }
    .prism-node .face.right { transform: rotateY(90deg) translateZ(6px); }
    .prism-node .face.top { transform: rotateX(90deg) translateZ(6px); }
    .prism-node .face.bottom { transform: rotateX(-90deg) translateZ(6px); }
    
    .prism-wrapper .x-label {
        font-size: 9px;
        bottom: -28px;
        width: 50px;
    }
    
    .turnover-stats {
        flex-direction: column;
        gap: 12px;
    }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.products-section {
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #111111 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Decorative background grid */
.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,106,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,106,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Glowing top accent line */
.products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6a00, #ffa100, #ff6a00, transparent);
    z-index: 1;
}

.products-section-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px;
}

/* ── Header ── */
.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.prod-eyebrow-line {
    flex: 0 0 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    display: inline-block;
}
.prod-eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.products-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.products-title-bar {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffa100);
    border-radius: 2px;
    margin: 0 auto 22px;
}

.products-subtitle {
    font-size: 17px;
    color: rgba(200,200,200,0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Product Grid ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

/* ── Product Card ── */
.prod-card {
    background: #1e1e1e;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,106,0,0.12);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    cursor: pointer;
    will-change: transform;
}

.prod-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,106,0,0.2), 0 8px 24px rgba(0,0,0,0.5);
    border-color: rgba(255,106,0,0.45);
}

/* ── Card image wrap ── */
.prod-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #111;
}

.prod-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.2,0.8,0.2,1), filter 0.4s ease;
    filter: brightness(0.92) saturate(0.9);
}

.prod-card:hover .prod-card-img {
    transform: scale(1.1);
    filter: brightness(0.65) saturate(1.1);
}

/* ── Overlay with button ── */
.prod-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.0);
    transition: background 0.35s ease;
    z-index: 2;
}

.prod-card:hover .prod-card-overlay {
    background: rgba(0,0,0,0.35);
}

.prod-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(14px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,106,0,0.4);
    white-space: nowrap;
}

.prod-card:hover .prod-view-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.prod-view-btn:hover {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 6px 28px rgba(255,106,0,0.5);
}

.prod-view-btn:active {
    transform: scale(0.97);
}

/* ── Card badge (number) ── */
.prod-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,106,0,0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ── Card body ── */
.prod-card-body {
    padding: 18px 20px 20px;
    background: #1e1e1e;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.prod-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.prod-card-title span {
    color: var(--primary-color);
}

.prod-card:hover .prod-card-title {
    color: #ffffff;
}

.prod-card-meta {
    font-size: 12px;
    color: rgba(180,180,180,0.55);
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-card-meta i {
    color: var(--primary-color);
    font-size: 11px;
}

/* ── Scroll Reveal Animations ── */
.prod-card-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2,0.8,0.2,1);
}

.prod-card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect via nth-child delays */
.prod-card:nth-child(6n+1)  { transition-delay: 0.05s; }
.prod-card:nth-child(6n+2)  { transition-delay: 0.10s; }
.prod-card:nth-child(6n+3)  { transition-delay: 0.15s; }
.prod-card:nth-child(6n+4)  { transition-delay: 0.20s; }
.prod-card:nth-child(6n+5)  { transition-delay: 0.25s; }
.prod-card:nth-child(6n)    { transition-delay: 0.30s; }

/* ── Load More Button ── */
.products-load-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.products-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.products-load-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 0;
}

.products-load-more-btn:hover::before {
    transform: scaleX(1);
}

.products-load-more-btn span,
.products-load-more-btn i {
    position: relative;
    z-index: 1;
}

.products-load-more-btn:hover {
    color: #fff;
    box-shadow: 0 8px 32px rgba(255,106,0,0.35);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS LIGHTBOX
══════════════════════════════════════════════════════════════ */

.prod-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.prod-lightbox.prod-lb-active {
    opacity: 1;
    pointer-events: all;
}

.prod-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.prod-lightbox-box {
    position: relative;
    z-index: 1;
    width: min(92vw, 1100px);
    max-height: 90vh;
    background: #141414;
    border-radius: 16px;
    border: 1px solid rgba(255,106,0,0.2);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
}

.prod-lightbox.prod-lb-active .prod-lightbox-box {
    transform: scale(1) translateY(0);
}

/* Close button */
.prod-lb-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.prod-lb-close:hover {
    background: var(--primary-color);
    transform: scale(1.1) rotate(90deg);
    border-color: var(--primary-color);
}

/* Nav arrows */
.prod-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,106,0,0.85);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(4px);
}

.prod-lb-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 30px rgba(255,106,0,0.5);
}

.prod-lb-prev { left: 14px; }
.prod-lb-next { right: 14px; }

/* Image wrapper */
.prod-lb-img-wrap {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    overflow: hidden;
    min-height: 300px;
}

.prod-lb-img {
    max-width: 100%;
    max-height: calc(90vh - 100px);
    object-fit: contain;
    display: block;
    transition: opacity 0.35s ease;
}

/* Spinner */
.prod-lb-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    background: #0a0a0a;
}

/* Footer */
.prod-lb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 70px;
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.prod-lb-title {
    font-size: 14px;
    font-weight: 700;
    color: #e0e0e0;
    letter-spacing: 0.3px;
}

.prod-lb-counter {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(255,106,0,0.12);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,106,0,0.25);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS RESPONSIVE
══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-section-inner {
        padding: 60px 20px 50px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 14px;
    }

    .prod-card-body {
        padding: 13px 14px 15px;
    }

    .prod-card-title {
        font-size: 13px;
    }

    .prod-lb-footer {
        padding: 12px 56px;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .prod-lb-prev { left: 8px; }
    .prod-lb-next { right: 8px; }

    .prod-lb-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .products-load-more-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .prod-view-btn {
        font-size: 12px;
        padding: 9px 14px;
    }

    .products-title {
        font-size: 30px;
    }
}