/* LAYOUT STYLES */

/* Hero Section */
.hero {
    background: #000;
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: #000;
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.v1 { z-index: 1; }
.v2 { z-index: 0; }

.hero-video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.animated-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(26,26,26,0.2) 0%, rgba(0,0,0,0.5) 50%);
    animation: rotate 30s linear infinite;
    z-index: 3;
    pointer-events: none;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 0px;
    max-width: 1000px;
    line-height: 1;
    margin-bottom: 0px;
    animation: fadeInUp 1.2s ease-out;
}

.hero h2 {
    font-size: 62px;
    font-weight: 600;
    letter-spacing: 1px;
    max-width: 1000px;
    line-height: 1.4;
    margin-bottom: 0px;
    text-align: left;
    animation: fadeInUp 1.2s ease-out;
}

.hero h3 {
    font-size: 18px;
    color: #3db451;
    font-weight: 500;
}

.hero h4 {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out;
}

.hero h6 {
    font-size: 82px;
    font-weight: 700;
    letter-spacing: 1px;
    max-width: 1000px;
    line-height: 1.1;
    margin-bottom: 0px;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title-line {
    background-color: #3db451 !important;
    width: 3px !important;
    height: 60px !important;
    flex-shrink: 0;
    border-radius: 4px;
    margin-top: 0px !important;
    position: relative;
}

.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 3.8rem) !important;
    line-height: 1.05;
    margin: 0;
}

.title-flex-container {
    display: flex;
    gap: 1.2rem;
    align-items: stretch;
    text-align: left;
}

.hero-p-text {
    padding-left: calc(6px + 1.5rem);
    font-size: clamp(1.2rem, 2.5vw, 2.8rem);
    font-weight: 800;
    color: #3db451;
    line-height: 1.2;
    max-width: 100%;
}

 
/* SOLUTIONS SLIDER SECTION */

.solutions-slider-section {
    background: #000;
    padding: 120px 0 120px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .solutions-slider-section {
        padding: 40px 0 40px;
    }
    .idx-cap-split-inner {
        grid-template-columns: 1fr;
    }
    .idx-cap-media {
        height: 300px;
        position: relative;
        overflow: hidden;
    }
    .idx-cap-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.solutions-header {
    max-width: 1600px;
    margin: 0 auto 60px;
    padding: 0 60px;
}

.solutions-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}


.solutions-header h2 {
    font-size: 52px;
    font-weight: 800;
    color: rgb(0, 0, 0);
    margin: 0;
    letter-spacing: -1px;
}



.solutions-header p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.view-all-link {
    color: #3cb451;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.view-all-link:hover {
    color: #ffffff;
}

.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    gap: 30px;
    padding: 20px 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.solution-card {
    min-width: 1160px;
    max-width: 1160px;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-template-rows: 1fr;
    height: 580px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    grid-column: 1;
    grid-row: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content-wrapper {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 2;
    grid-row: 1;
}

.card-tag {
    display: inline-block;
    color: #3cb451;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.card-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

#section4 .feature-icon {
    width: 20px;
    height: 20px;
    background: none !important;
    border-radius: 0 !important;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#section4 .feature-icon::before {
    content: '✔';
    color: #3cb451;
    font-size: 18px;
    font-weight: 700;
}

#section6 {
    min-height: 400px !important;
    height: 400px;
}

#section6 .background-contact {
    opacity: 0.25;
}

#section6 .text-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffff;
}
#section6 .text-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffff;
}
#section6 .text-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    #section6 {
        min-height: 350px !important;
        height: auto;
    }
    #section6 .text-content h2 {
        font-size: 28px;
    }
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.feature-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.learn-more-btn {
    color: #3cb451;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.learn-more-btn:hover {
    color: #ffffff;
    gap: 12px;
}

.learn-more-btn::after {
    content: '→';
    font-size: 16px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: #3cb451;
    border-color: #3cb451;
    transform: scale(1.1);
}
.logo-wrap { display: flex; align-items: center; gap: 4px; }
.logo-wrap .v-main { font-size: 28px; font-weight: 800; color: #3cb451; }
.logo-wrap .brand-text { font-size: 20px; font-weight: 600; letter-spacing: 1px; }
.logo-wrap .brand-suffix { font-size: 20px; font-weight: 300; letter-spacing: 1px; color: rgba(255, 255, 255, 0.8); }

#navbar .logo-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff;
}

.slider-progress {
    max-width: 1400px;
    margin: 30px auto 0;
    padding: 0 60px;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #3cb451;
    width: 0%;
    transition: width 0.3s ease;
}

@media (max-width: 1024px) {
    .solutions-header { padding: 0 40px; }
    .slider-wrapper { padding: 20px 40px; }
    .solution-card { min-width: 900px; max-width: 900px; grid-template-columns: 350px 1fr; height: 520px; }
    .card-content-wrapper { padding: 30px; }
    .card-title { font-size: 28px; }
    .slider-progress { padding: 0 40px; }
}

@media (max-width: 768px) {
    .solutions-slider-section { padding: 80px 0; }
    .solutions-header { padding: 0 30px; }
    .solutions-header-top { flex-direction: column; align-items: flex-start; gap: 15px; }
   
    .solutions-header p { font-size: 16px; }
    .slider-wrapper { padding: 20px 30px; gap: 20px; }
    .solution-card { min-width: 340px; max-width: 340px; height: auto; grid-template-columns: 1fr; grid-template-rows: 200px auto; }
    .card-image { width: 100%; height: 200px; grid-column: 1; grid-row: 1; }
    .card-content-wrapper { grid-column: 1; grid-row: 2; padding: 25px; }
    .card-title { font-size: 22px; margin-bottom: 20px; }
    .card-features { gap: 20px; margin-bottom: 20px; }
    .feature-title { font-size: 15px; }
    .feature-desc { font-size: 16px; }
    .slider-controls { margin-top: 30px; }
    .slider-nav-btn { width: 45px; height: 45px; font-size: 20px; }
    .slider-progress { padding: 0 30px; }
}

/* ADVANCED CAPABILITIES MODULE */

.capabilities-module {
    background: #000;
    padding: 100px 0;
    color: #fff;
}

.capabilities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 100px;
}

.capabilities-list { flex: 1; }

.capabilities-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.cap-card {
    border-top: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.cap-head {
    display: flex;
    align-items: center;
    padding: 35px 0;
    gap: 30px;
}

.cap-num { color: #3db451; font-size: 14px; font-weight: 600; }
.cap-text { font-size: 28px; font-weight: 500; flex: 1; transition: color 0.3s; }
.cap-plus-wrap { width: 24px; height: 24px; position: relative; }
.cap-plus-line { position: absolute; width: 100%; height: 2px; background: #3db451; top: 50%; transform: translateY(-50%); transition: 0.4s; }
.cap-plus-line::after { content: ''; position: absolute; width: 100%; height: 100%; background: #3db451; transform: rotate(90deg); top: 0; left: 0; transition: transform 0.4s, opacity 0.4s; opacity: 1; }
.cap-card.active .cap-plus-line::after { transform: rotate(0deg); opacity: 0; }
.cap-card.active .cap-text { color: #3db451; }

.cap-body { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.cap-card.active .cap-body { max-height: 300px; opacity: 1; padding-bottom: 40px; }

.cap-content p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 25px; font-size: 16px; max-width: 500px; }
.cap-link { color: #fff; text-decoration: none; border-bottom: 1px solid #3db451; padding-bottom: 5px; font-weight: 600; transition: color 0.3s; }
.cap-link:hover { color: #3db451; }

.capabilities-visual { flex: 1; position: sticky; top: 150px; height: 600px; }
.cap-image-container { width: 100%; height: 100%; position: relative; border-radius: 8px; overflow: hidden; }
.cap-slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: all 0.8s ease-in-out; }
.cap-slide-img.active { opacity: 1; transform: scale(1); }

@media (max-width: 1024px) {
    .capabilities-container { flex-direction: column; padding: 0 40px; }
    .capabilities-visual { position: relative; top: 0; height: 400px; order: -1; }
}

@media (max-width: 768px) {
    .capabilities-module { padding: 80px 0; }
    .capabilities-container { padding: 0 30px; }
    .capabilities-title { font-size: 36px; margin-bottom: 40px; }
    .cap-text { font-size: 20px; }
    .cap-content p { font-size: 14px; }
    .capabilities-visual { height: 300px; }
}

.section-content {
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
    min-height: 100vh;
}

.section.hero { 
    height: 100vh !important; 
    min-height: 100vh !important; 
    position: relative !important;
}


#section0 {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    width: auto !important;
    display: block !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px !important;
    z-index: 1000 !important;
}

.scroll-indicator {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    
    z-index: 1000 !important;
    color: #3db451 !important;
    font-size: 12px !important;
    cursor: pointer !important;
    display: block !important;
}

#section5 .section-content {
    background-color: #f5f5f5;
    max-width: 1400px;
    width: 100%;
    height: 550px;
    padding: 40 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.text-content h2 { font-size: 60px; font-weight: 550; margin-bottom: 35px; letter-spacing: 1px; line-height: 1.3; }
.text-content h3 { font-size: 18px; font-weight: 300; line-height: 1.7; margin-bottom: 25px; opacity: 0.85; letter-spacing: 0.5px; }

#section3 { background-color: #000000 !important; }
#section3 .text-content h2 { color: #000000 !important; }
#section3 .text-content h3 { color: #222222 !important; opacity: 0.9; }
#section3 .btn { color: #3cb451 !important; border-color: #000000 !important; }
#section3 .btn:hover { color: #ffffff !important; }
#section3 .btn::before { background: #000000; }

#section4 h2 { color: #fff !important; font-size: 48px; font-weight: 700; margin-bottom: 30px; }
#section4 p { color: rgba(255, 255, 255, 0.9) !important; font-size: 18px; line-height: 1.7; }
#section4 .feature-list li { color: rgba(255, 255, 255, 0.95); }
#section7 h2 { font-size: 42px; font-weight: 300; margin-bottom: 35px; letter-spacing: 1px; line-height: 1.3; }
#section8 { min-height: 40px; font-size: 20px; padding: 100px 20px; display: flex; align-items: center; justify-content: center; }

.section-content-title h2 { font-size: 60px; margin-left: 130px; margin-top: 100px; margin-bottom: 125px; }

.image-box {
    width: 100%;
    height: auto;
    background: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.image-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: opacity 0.4s ease; }
.image-box:hover img { opacity: 1; }
.image-box:hover { transform: scale(1.02); }
.image-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.2) 50%, transparent 70%);
    animation: shine 6s infinite;
}

.mission { text-align: center; padding: 120px 20px !important; min-height: auto !important; scroll-snap-align: center; }
.mission h2 { font-size: 54px; font-weight: 800; color: #000; letter-spacing: 1px; line-height: 1.4; max-width: 1200px; margin: 0 auto 0px; }
.mission h3 { font-size: 17px; font-weight: 400; color: #000; opacity: 0.85; letter-spacing: 0.5px; line-height: 25px; max-width: 900px; margin: 0 auto; }
.mission .btn {  border: 1px solid rgb(61, 180, 81); color: #000000 !important; background: transparent; margin-top: 40px; font-weight: 600; }
.mission .btn:hover { color: #3db451 !important; }
.mission .btn::before { background: #000 !important; }

.highlights-section { background: #000000; padding-top: 100px; padding-bottom: 0px; overflow: hidden; }
.highlights-section h3 { font-size: 18px; text-align: center; margin-bottom: 60px !important; font-weight: 300; }
.highlights-carousel h3 { font-size: 28px; text-align: left; margin-bottom: 20px !important; font-weight: 300; }

.showcase-header { max-width: 1400px; margin: 0 auto 0px auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.showcase-icon img { opacity: 0.6; transition: opacity 0.3s ease, transform 0.3s ease; max-width: 100px; margin-bottom: 60px; }
.showcase-header:hover .showcase-icon img { opacity: 1; transform: translateY(-4px); }
.showcase-title { font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 50px !important; font-weight: 450 !important; color: #fff; letter-spacing: 0.02em !important; margin-bottom: 15px !important; text-align: left; }
.showcase-subtitle { font-size: 18px; font-weight: 300; color: rgba(255, 255, 255, 0.884); max-width: 750px; margin-top: 10px; margin-bottom: 50px; line-height: 1.6; }

.highlights-section .showcase-title,
.highlights-section > h3 { text-align: left !important; max-width: 1400px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; padding-top: 100px; }
.highlights-section .showcase-title { margin-top: 180px !important; margin-bottom: 15px !important; }
.highlights-section > h3 { margin-top: 0 !important; }

.highlights-carousel { position: relative; max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.carousel-container { display: flex; justify-content: center; gap: 30px; padding: 20px 0; padding-bottom: 100px; max-width: 1200px; margin: 0 auto; scrollbar-width: none; }
.carousel-container::-webkit-scrollbar { display: none; }

.carousel-card { min-width: 320px; flex: 0 1 380px; height: 500px; background: #111; border-radius: 8px; position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
.carousel-card:hover { transform: scale(1.05); }

.card-image { width: 100%; height: 450px; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.65s ease, filter 0.4s ease; z-index: 1; position: relative; filter: brightness(0.52) saturate(0.6); }
.card-image:hover img { transform: scale(1.2); }
.card-image::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transition: left 0.5s; z-index: 2; }
.carousel-card:hover .card-image::after { left: 100%; }

.card-content { padding: 10px 15px; box-sizing: border-box; display: flex; flex-direction: column; flex-grow: 1; }
.card-link { color: #3cb451; font-size: 16px; font-weight: 500; text-decoration: none; letter-spacing: 1px; margin-top: auto; transition: opacity 0.3s, color 0.3s; }
.card-link:hover { color: #a7f43a; opacity: 0.8; }
.card-tag { color: #888; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.card-title { font-size: 24px; font-weight: 300; letter-spacing: 1px; margin-bottom: 10px; }

.solutions-module { background: #ffffff !important; padding: 80px 0; width: 100% !important; }
.solutions-module .module-container { max-width: 1420px !important; margin: 0 auto !important; padding: 0 20px !important; display: flex; gap: 40px; }
.solutions-module .solutions-list { flex: 1; }
.solutions-module .showcase-title.title-centered { text-align: center !important; margin: 50px auto 50px auto !important; color: #000000 !important; padding-top: 100px !important; }
.solutions-module .acc-card { background: #000000 !important; margin-bottom: 20px; border-radius: 12px; overflow: hidden; }
.solutions-module .acc-head { display: flex; align-items: center; padding: 30px !important; cursor: pointer; }
.solutions-module .acc-num { color: #ffffff !important; font-size: 16px; margin-right: 25px; opacity: 0.6; flex-shrink: 0; }
.solutions-module .acc-text { color: #ffffff !important; font-size: 20px; font-weight: 500; flex-grow: 1; }
.solutions-module .plus-line, .solutions-module .plus-line::after { background-color: #ffffff !important; }
.solutions-module .module-link { color: #3cb451 !important; text-decoration: none; }

@media (max-width: 768px) {
    .solutions-module .module-container { flex-direction: column; gap: 0; }
}

.solutions-module .acc-body { padding: 0 30px 25px 30px !important; }
.solutions-module .acc-content { padding-left: 45px !important; }
.solutions-module .module-link { color: #3cb451 !important; text-decoration: none; font-size: 16px; display: inline-block; transition: opacity 0.3s; }
.solutions-module .module-link:hover { opacity: 0.8; }

.grid-showcase { background: #000; padding: 100px 60px; }
.interactive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto; }
.grid-item { aspect-ratio: 3 / 4; background: #111; border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.grid-item:hover { transform: scale(1.05); box-shadow: 0 25px 60px rgba(0,0,0,0.6); }
.grid-item-bg { position: absolute; inset: 0; }
.grid-item-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) contrast(1); transition: transform 0.6s ease, filter 0.6s ease; }
.grid-item:hover .grid-item-bg img { transform: scale(1.05); filter: brightness(1) contrast(1.05); }
.grid-item::before { content: ""; position: absolute; top: 0; left: -130%; width: 130%; height: 100%; background: linear-gradient(90deg, transparent 35%, rgba(255, 255, 255, 0.107), transparent 65%); transform: skewX(-20deg); opacity: 0; z-index: 1; }
.grid-item:hover::before { left: 130%; opacity: 1; transition: left 0.8s ease, opacity 0.2s ease; }
.grid-item-overlay { position: relative; z-index: 2; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent); }
.grid-item-title { font-size: 26px; font-weight: 300; letter-spacing: 1px; margin-bottom: 10px; }
.grid-item-desc { color: #3db451; text-decoration: none; font-size: 18px; opacity: 0.95; transition: color 0.25s ease, text-shadow 0.25s ease; }
.grid-item-desc:hover { color: #ffffff; text-shadow: 0 0 8px rgba(61,180,81,0.4); }

.solutions-module { background: #000; padding: 0px 0; color: #fff; }
.module-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; display: flex; gap: 100px; }
.solutions-list { flex: 1; }
.module-title { font-size: 56px; font-weight: 800; margin-bottom: 60px; letter-spacing: -2px; }
.vision-title h2 { margin-top: 60px; }
.solutions-visual { flex: 1; position: sticky; top: 150px; height: 600px; }
.sticky-image-container { width: 100%; height: 100%; position: relative; border-radius: 4px; overflow: hidden; }
.slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: all 0.8s ease-in-out; }
.slide-img.active { opacity: 1; transform: scale(1); }

.blog-section { position: relative; min-height: 100vh; background: linear-gradient(135deg, #000000 0%, #000000 50%, #1d1d1e 100%); overflow: hidden; }
.background-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920'); background-size: cover; background-position: center; opacity: 0.15; z-index: 0; }
.background-contact { position: absolute; top: 50%; left: 0; width: 100%; height: 100%; transform: translateY(-50%); background-image: url("assets/images/contact.png"); background-size: 120% auto; background-repeat: no-repeat; background-position: center; opacity: 0.15; z-index: 0; }

.blog-container { position: relative; z-index: 1; display: flex; min-height: 100vh; max-width: 1400px; margin: 0 auto; padding: 80px 40px; gap: 60px; }
.left-section { flex: 0 0 400px; padding-right: 40px; }
.blog-title { font-size: 54px; font-weight: 700; line-height: 1.2; margin-bottom: 60px; color: #fff; }
.menu-list { list-style: none; border-left: 3px solid rgba(255, 255, 255, 0.2); }
.menu-item { padding: 15px 0 15px 30px; font-size: 18px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; color: rgba(255, 255, 255, 0.6); position: relative; }
.menu-item::before { content: ''; position: absolute; left: -3px; top: 0; height: 100%; width: 3px; background: #3db451; transform: scaleY(0); transition: transform 0.3s ease; }
.menu-item:hover { color: #fff; }
.menu-item.active { color: #fff; }
.menu-item.active::before { transform: scaleY(1); }
.right-section { flex: 1; display: flex; align-items: center; }
.content-wrapper { width: 100%; }
.content-item { display: none; animation: fadeInUp 0.6s ease; }
.content-item.active { display: block; }
.content-heading { font-size: 36px; font-weight: 700; margin-bottom: 30px; color: #fff; }
.content-description { font-size: 18px; line-height: 1.8; color: rgba(255, 255, 255, 0.9); margin-bottom: 40px; max-width: 700px; }
.read-more-btn { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: none; color: #3bb451; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; padding: 0; transition: gap 0.3s ease; }
.read-more-btn:hover { gap: 15px; }
.read-more-btn::after { content: '›'; font-size: 28px; font-weight: 300; }
@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
        padding: 60px 24px;
        gap: 30px;
        min-height: auto;
    }
    .left-section {
        flex: none;
        padding-right: 0;
    }
    .blog-title { font-size: 36px; margin-bottom: 30px; }
    .menu-list { margin-bottom: 0; }
    .right-section { min-height: auto; }
    .content-description { margin-bottom: 20px; }
}

.tech-pattern { position: absolute; top: 50%; right: 10%; transform: translateY(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgb(58 180 81 / 18%) 0%, transparent 70%) ; border-radius: 50%; pointer-events: none; }
.tech-pattern::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; border: 2px solid rgb(58 180 81 / 10%); border-radius: 50%; }
.tech-pattern::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; border: 1px solid rgb(58 180 81 / 10%); border-radius: 50%; }

.clients-section { background: #000000; padding-top: 100px; padding-bottom: 30px; overflow: hidden; }
.clients-track { width: 100%; overflow: hidden; }
.clients-row { display: flex; width: max-content; animation: scroll-logos 30s linear infinite; }
.clients-row img { height: 50px; margin: 0 60px; opacity: 0.8; filter: grayscale(100%); transition: 0.3s; }
.clients-row img:hover { opacity: 1; filter: grayscale(0); }

.modern-footer { background: #000000; color: #ffffff; padding: 0; margin: 0; }
.footer-main { max-width: 1400px; margin: 0 auto; padding: 80px 60px 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; }
.footer-col h4 { font-size: 14px; font-weight: 600; letter-spacing: 1px; margin-bottom: 24px; color: #ffffff; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 15px; font-weight: 400; transition: color 0.3s ease; display: inline-block; }
.footer-col ul li a:hover { color: #3cb451; transform: translateX(3px); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.footer-bottom-content { display: flex; align-items: center; justify-content: space-between; padding: 30px 0; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 4px; }
.footer-logo .v-main { font-size: 28px; font-weight: 800; color: #3cb451; }
.footer-logo .brand-text { font-size: 20px; font-weight: 600; letter-spacing: 1px; }
.footer-logo .brand-suffix { font-size: 20px; font-weight: 300; letter-spacing: 1px; color: rgba(255, 255, 255, 0.8); }
.footer-links-bottom { display: flex; gap: 30px; flex: 1; justify-content: center; }
.footer-links-bottom a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-links-bottom a:hover { color: #ffffff; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: rgba(255, 255, 255, 0.6); transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { color: #3cb451; transform: translateY(-2px); }
.footer-copyright { text-align: center; padding: 25px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-copyright p { color: rgba(255, 255, 255, 0.4); font-size: 16px; font-weight: 400; margin: 0; }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .footer-main { padding: 60px 40px 40px; }
    .footer-bottom { padding: 0 40px; }
    .footer-bottom-content { flex-wrap: wrap; justify-content: center; text-align: center; }
    .footer-links-bottom { order: 3; width: 100%; justify-content: center; padding-top: 20px; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-main { padding: 50px 30px 30px; }
    .footer-bottom { padding: 0 30px; }
    .footer-col h4 { font-size: 16px; margin-bottom: 16px; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 14px; }
    .footer-bottom-content { flex-direction: column; padding: 25px 0; gap: 20px; }
    .footer-links-bottom { flex-direction: column; gap: 15px; padding-top: 0; }
    .footer-social { gap: 25px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-main { padding: 40px 20px 20px; }
    .footer-bottom { padding: 0 20px; }
}

#section4 { position: relative; width: 100%; min-height: 100vh; display: flex !important; justify-content: center !important; align-items: center !important; overflow: hidden; }
#section4 video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
#section4 div[style*="background: rgba(0, 0, 0, 0.5)"] { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background: rgba(0, 0, 0, 0.6) !important; z-index: 2 !important; pointer-events: none !important; }

/* UK Value Proposition Section */
.uk-value-prop { background: #000000; padding: 120px 0; position: relative; overflow: hidden; }
.uk-value-prop::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 50%, rgba(60, 180, 81, 0.05) 0%, transparent 50%); pointer-events: none; }
.uk-value-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; position: relative; z-index: 2; }
.uk-value-header { text-align: center; margin-bottom: 80px; }
.uk-value-header h2 { font-size: 52px; font-weight: 400; color: #ffffff; margin-bottom: 20px; letter-spacing: 0.5px; }
.uk-value-subtitle { font-size: 20px; font-weight: 300; color: rgba(255, 255, 255, 0.7); max-width: 700px; margin: 0 auto; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.value-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 40px 30px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #3cb451, #2a8f3d); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.value-card:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(60, 180, 81, 0.3); transform: translateY(-5px); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon { width: 80px; height: 80px; background: rgba(60, 180, 81, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; transition: all 0.4s ease; }
.value-icon svg { color: #3cb451; transition: transform 0.4s ease; }
.value-card:hover .value-icon { background: rgba(60, 180, 81, 0.15); transform: scale(1.1); }
.value-card:hover .value-icon svg { transform: scale(1.1); }
.value-card h3 { font-size: 24px; font-weight: 400; color: #ffffff; margin-bottom: 15px; letter-spacing: 0.3px; }
.value-card > p { font-size: 16px; font-weight: 300; color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin-bottom: 25px; }
.value-features { list-style: none; padding: 0; margin: 0; }
.value-features li { font-size: 15px; color: rgba(255, 255, 255, 0.6); padding-left: 25px; margin-bottom: 12px; position: relative; line-height: 1.5; }
.value-features li::before { content: '✓'; position: absolute; left: 0; color: #3cb451; font-weight: 700; font-size: 16px; }
.value-features li:last-child { margin-bottom: 0; }

.uk-value-cta { display: flex; justify-content: center; gap: 20px; margin-top: 60px; }
.value-btn-primary, .value-btn-secondary { padding: 16px 40px; font-size: 15px; font-weight: 600; letter-spacing: 0.5px; text-decoration: none; border-radius: 6px; transition: all 0.3s ease; display: inline-block; }
.value-btn-primary { background: #3cb451; color: #000000; border: 2px solid #3cb451; }
.value-btn-primary:hover { background: #45d05c; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(60, 180, 81, 0.3); }
.value-btn-secondary { background: transparent; color: #ffffff; border: 2px solid rgba(255, 255, 255, 0.2); }
.value-btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.4); transform: translateY(-2px); }

@media (max-width: 1024px) {
    .uk-value-container { padding: 0 40px; }
    .value-grid { grid-template-columns: 1fr; gap: 30px; }
    .uk-value-header h2 { font-size: 40px; }
    .uk-value-subtitle { font-size: 18px; }
}

@media (max-width: 768px) {
    .uk-value-prop { padding: 80px 0; }
    .uk-value-container { padding: 0 30px; }
    .uk-value-header { margin-bottom: 50px; }
    .uk-value-header h2 { font-size: 32px; }
    .uk-value-subtitle { font-size: 16px; }
    .value-card { padding: 35px 25px; }
    .value-card h3 { font-size: 22px; }
    .value-card > p { font-size: 15px; }
    .uk-value-cta { flex-direction: column; gap: 15px; }
    .value-btn-primary, .value-btn-secondary { width: 100%; text-align: center; }
}

.hero-btn-primary { color:#3bb451 }
.hero-btn-secondary { color:#3bb451 }

/* CUSTOM ENGINEERING SECTION */

#section3 { background: #000000 !important; min-height: 100vh; padding: 0 !important; position: relative; z-index: 1; } 
#section3.fade-in {
    background: #000000 !important;
}
#section3 .section-content { max-width: 1600px !important; width: 100% !important; padding: 0 !important; display: flex !important; flex-direction: row; align-items: stretch; min-height: 100vh; gap: 0; }

.custom-eng-content { flex: 1; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; background: #000000; position: relative; z-index: 2; max-height: none !important; }
.eng-tag { display: inline-block; color: #3cb451; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.custom-eng-content h2 { font-size: 54px !important; font-weight: 700 !important; color: #ffffffe7 !important; line-height: 1.1 !important; margin-bottom: 30px !important; letter-spacing: -1px !important; }
.custom-eng-content h3 { font-size: 18px !important; font-weight: 400 !important; color: #ffffffe6 !important; line-height: 1.8 !important; margin-bottom: 50px !important; max-width: 600px !important; opacity: 1 !important; }

.deployment-list { background: #000000; border-left: 4px solid #3cb451; padding: 35px 40px; margin-bottom: 40px; border-radius: 4px; }
.deployment-list h4 { font-size: 16px; font-weight: 600; color: #ffffff; margin-bottom: 20px; letter-spacing: 0.5px; }
.deployment-list ul { list-style: none; padding: 0; margin: 0; }
.deployment-list li { font-size: 15px; color: #ffffff; padding: 12px 0; padding-left: 30px; position: relative; line-height: 1.5; }
.deployment-list li::before { content: '✓'; position: absolute; left: 0; color: #3cb451; font-weight: 700; font-size: 18px; }

.custom-eng-content .btn { display: inline-flex !important; align-items: center; gap: 10px; padding: 18px 40px !important; background: #000000 !important; color: #ffffff !important; text-decoration: none; font-size: 15px !important; font-weight: 600 !important; letter-spacing: 0.5px; border-radius: 6px; border: none !important; transition: all 0.3s ease; align-self: flex-start; position: relative; overflow: hidden; }
.custom-eng-content .btn::before { display: none !important; }
.custom-eng-content .btn:hover { background: #3cb451 !important; color: #ffffff !important; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(60, 180, 81, 0.3); }
.custom-eng-content .btn::after { content: '→'; font-size: 18px; transition: transform 0.3s ease; }
.custom-eng-content .btn:hover::after { transform: translateX(5px); }

.custom-eng-image { flex: 1; position: relative; overflow: hidden; min-height: 400px; max-height: 725px; max-width: 750px; }
#section3, #section3 .section-content { max-height: none; }
.custom-eng-content { padding: 80px 60px; max-height: none; }
#section3 .image-box { position: absolute; inset: 0; width: 100%; height: 100%; background: #000; border-radius: 0; margin: 0; }
#section3 .image-box img { width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: transform 0.6s ease; filter: brightness(0.6) saturate(0.55); }
#section3 .custom-eng-image:hover .image-box img { transform: scale(1.05); }
.eng-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(60, 180, 81, 0.1) 0%, transparent 50%); pointer-events: none; z-index: 1; }

.eng-stats { position: absolute; bottom: 60px; left: 60px; right: 60px; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); padding: 30px; border-radius: 8px; display: flex; gap: 40px; z-index: 2; }
.stat-item { flex: 1; text-align: center; }
.stat-number { font-size: 36px; font-weight: 700; color: #3cb451; margin-bottom: 5px; line-height: 1; }
.stat-label { font-size: 16px; color: rgba(255, 255, 255, 0.8); text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 1024px) {
    #section3 .section-content { flex-direction: column; }
    .custom-eng-content { padding: 80px 60px; }
    .custom-eng-image { min-height: 500px; }
    .eng-stats { flex-direction: column; gap: 20px; left: 40px; right: 40px; bottom: 40px; }
    .stat-item { text-align: left; }
}

@media (max-width: 768px) {
    #section3 { min-height: auto !important; max-height: none !important; }
    #section3 .section-content { flex-direction: column-reverse !important; min-height: auto; max-height: none !important; }
    .custom-eng-content { padding: 40px 24px !important; }
    .custom-eng-content h2 { font-size: 36px !important; }
    .custom-eng-content h3 { font-size: 16px !important; margin-bottom: 30px !important; }
    .deployment-list { padding: 25px 30px; margin-bottom: 30px; }
    .deployment-list h4 { font-size: 14px; margin-bottom: 15px; }
    .deployment-list li { font-size: 14px; padding: 10px 0; padding-left: 25px; }
    .custom-eng-image { min-height: 280px !important; max-height: 280px !important; }
    .eng-stats { display: none !important; }
    .custom-eng-content .btn { width: 100%; justify-content: center; text-align: center; }
}
/* ==============================================
   SECURITY PAGE STYLES
   ============================================== */

.nav-active { color: #3db451 !important; }

.btn-primary-g { display: inline-block; padding: 16px 10px; background: #3db451b3; color: #000 !important; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: all 0.28s ease; }
.btn-primary-g:hover { background: #49d060; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(61,180,81,0.28); }
.btn-ghost-w { display: inline-block; padding: 16px 38px; background: transparent; color: rgba(255,255,255,0.75) !important; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,0.22); transition: all 0.28s ease; }
.btn-ghost-w:hover { border-color: #3db451; color: #3db451 !important; }

.sec-hero { position: relative; min-height: 100vh; background: #000; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.sec-hero-bg { position: absolute; inset: 0; z-index: 1; }
.sec-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; filter: brightness(0.65) contrast(1.1); }
.sec-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(175deg, rgba(0,0,0,0.15) 0%, rgba(0, 0, 0, 0.337) 45%, rgba(0, 0, 0, 0.432) 100%); }
.sec-hero-content { position: relative; z-index: 10; max-width: 1600px; width: 100%; margin: 0 auto; padding: 0 80px 90px; }
.sec-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.sec-breadcrumb span, .sec-breadcrumb a { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; }
.sec-breadcrumb a:hover { color: #3db451; }
.sec-breadcrumb .sep { color: rgba(255,255,255,0.2); font-size: 10px; }
.sec-breadcrumb .current { color: #3db451; }
.sec-hero h1 { font-size: clamp(46px,7vw,62px); font-weight: 650; color: #fff; line-height: 0.95; letter-spacing: -1px; max-width: 850px; margin-bottom: 26px; }
.sec-hero h1 em { font-style: normal; color: #3db451; }
.sec-hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; margin-bottom: 44px; }
.sec-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.intro-strip { background:rgba(14,19,24,1); border-bottom: 1px solid rgba(14,19,24,1); padding: 34px 0; }
.intro-strip-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.intro-strip-text { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.55); }
.intro-strip-text strong { color: #fff; font-weight: 600; }
.intro-strip-badges { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.ibadge { padding: 6px 14px; border: 1px solid rgba(255,255,255,0.12); font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.5); white-space: nowrap; }
.ibadge.green { border-color: rgba(61,180,81,0.4); color: #3db451; }

.products-wrap { background: #f4f4f4; padding: 100px 0 80px; }
.products-wrap-header { max-width: 1400px; margin: 0 auto 60px; padding: 0 80px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.products-wrap-header h2 { font-size: clamp(34px,4vw,52px); font-weight: 800; color: #000; line-height: 1.05; letter-spacing: -1px; }
.products-wrap-header p { font-size: 15px; font-weight: 400; color: #666; max-width: 320px; text-align: right; line-height: 1.65; }
.product-grid { max-width: 1400px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }

.pcard { background: #000000; display: flex; flex-direction: column; overflow: hidden; text-decoration: none; transition: box-shadow 0.35s ease; position: relative; }
.pcard:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.13); z-index: 2; }
.pcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #3db451; transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; z-index: 5; }
.pcard:hover::before { transform: scaleX(1); }
.pcard-img { width: 100%; height: 240px; overflow: hidden; position: relative; background: #111; flex-shrink: 0; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%) brightness(0.88); transition: transform 0.55s ease, filter 0.4s ease; display: block; }
.pcard:hover .pcard-img img { transform: scale(1.07); filter: grayscale(0%) brightness(1); }
.pcard-body { padding: 30px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.pcard-num { font-size: 10px; font-weight: 800; letter-spacing: 3px; color: #3db451; margin-bottom: 8px; text-transform: uppercase; }
.pcard-type { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #ffffff; margin-bottom: 10px; }
.pcard-name { font-size: 24px; font-weight: 800; color: #ffffff; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 10px; }
.pcard-tagline { font-size: 16px; font-weight: 400; color: #ffffff; font-style: italic; line-height: 1.5; margin-bottom: 20px; }
.pcard-apps { margin-bottom: 20px; flex: 1; }
.pcard-apps-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; margin-bottom: 8px; }
.pcard-apps-list { display: flex; flex-wrap: wrap; gap: 5px; }
.pcard-app { font-size: 11px; font-weight: 500; color: #fefefe; padding: 4px 10px; background: #000000; letter-spacing: 0.2px; transition: all 0.25s; }
.pcard:hover .pcard-app { background: rgba(61,180,81,0.1); color: #2a7d38; }
.pcard-specs { display: flex; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.pcard-spec { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; color: #888; }
.pcard-spec::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: #3db451; flex-shrink: 0; }
.pcard-link { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid #eee; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #aaa; transition: all 0.25s ease; }
.pcard:hover .pcard-link { color: #3db451; }
.pcard-link-arrow { font-size: 18px; transition: transform 0.25s ease; }
.pcard:hover .pcard-link-arrow { transform: translateX(6px); }

.how-section { background: #000; overflow: hidden; }
.how-header { background: #000; padding: 90px 0 80px; border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
.how-header-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.how-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #3db451; margin-bottom: 18px; }
.how-header-inner h2 { font-size: clamp(36px,5vw,64px); font-weight: 800; color: #fff; line-height: 1.0; letter-spacing: -1.5px; margin-bottom: 18px; }
.how-header-inner h2 span { color: rgba(255,255,255,0.35); }
.how-header-inner > p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.45); max-width: 540px; line-height: 1.75; }

.how-row { display: grid; grid-template-columns: 2fr 1fr;  }
.how-row-reverse { grid-template-columns: 1fr 2fr; }
.how-row-reverse .how-row-text { order: 2; }
.how-row-reverse .how-row-media { order: 1; }
.how-row-text { padding: 60px 64px; display: flex; flex-direction: column; justify-content: center; background: #0a0a0a; }
.how-row-num { font-size: 10px; font-weight: 800; letter-spacing: 3px; color: #3db451; margin-bottom: 14px; text-transform: uppercase; }
.how-row-text h3 { font-size: clamp(18px,1.6vw,22px); font-weight: 800; color: #fff; letter-spacing: -0.3px; line-height: 1.2; margin-bottom: 14px; }
.how-row-text p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 10px; }
.how-row-text p:last-of-type { margin-bottom: 0; }
.how-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.how-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.42); line-height: 1.55; }
.how-list li::before { content: ""; display: block; width: 4px; height: 4px; border-radius: 50%; background: #3db451; flex-shrink: 0; margin-top: 7px; }
.how-row-media { position: relative; overflow: hidden; background: #111; min-height: 360px; }
.how-row-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: brightness(0.7); transition: transform 0.6s ease, filter 0.4s ease; display: block; }
.how-row:hover .how-row-media img { transform: scale(1.04); filter: brightness(0.88); }
.how-row-media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(61,180,81,0.08) 0%, transparent 55%); z-index: 1; opacity: 0; transition: opacity 0.4s ease; }
.how-row:hover .how-row-media::before { opacity: 1; }
.how-row-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 16px; background: rgba(0,0,0,0.85); font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.4); letter-spacing: 0.3px; z-index: 2; }

.how-video-row { background: #0a0a0a; padding: 150px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.how-video-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.how-video-text h3 { font-size: clamp(26px,3vw,38px); font-weight: 800; color: #fff; letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 18px; margin-top: 16px; }
.how-video-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 28px; }
.how-video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; background: #111; overflow: hidden; }
.how-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.how-video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; z-index: 2; }
.how-video-wrap:hover .how-video-overlay { background: rgba(0,0,0,0.15); }
.how-play-btn { width: 72px; height: 72px; border-radius: 50%; background: #3db451; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #000; transition: all 0.3s ease; padding-left: 4px; }
.how-play-btn:hover { background: #49d060; transform: scale(1.1); box-shadow: 0 0 0 12px rgba(61,180,81,0.15); }

.deploy-section { background: #000; padding: 100px 0; }
.deploy-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.deploy-inner > h2 { font-size: clamp(32px,4vw,50px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 8px; }
.deploy-inner > p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.45); margin-bottom: 60px; }
.deploy-tabs { display: flex; gap: 2px; margin-bottom: 3px; flex-wrap: wrap; }
.deploy-tab { padding: 14px 28px; background: #111; border: none; font-family: 'Plus Jakarta Sans',sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.25s ease; }
.deploy-tab:hover { background: #161616; color: rgba(255,255,255,0.65); }
.deploy-tab.active { background: #3db451; color: #000; }
.deploy-panel { display: none; grid-template-columns: 1fr 1fr; gap: 3px; }
.deploy-panel.active { display: grid; }
.deploy-panel-left { background: #111; padding: 50px 44px; }
.deploy-panel-left h3 { font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.5px; margin-bottom: 18px; }
.deploy-panel-left p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 32px; }
.deploy-systems-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #3db451; margin-bottom: 14px; }
.deploy-system-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.deploy-stag { padding: 8px 16px; border: 1px solid rgba(61,180,81,0.3); font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #3db451; text-transform: uppercase; }
.deploy-panel-right { background: #0d0d0d; padding: 50px 44px; display: flex; flex-direction: column; }
.deploy-req { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.deploy-req:first-child { padding-top: 0; }
.deploy-req:last-child { border-bottom: none; padding-bottom: 0; }
.deploy-req-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #3db451; margin-bottom: 6px; }
.deploy-req-val { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ── 6. CORE TECHNOLOGIES ── */
.tech-section { background: #000; }

.tech-highlights {
    position: relative;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

.tech-bg-wrap { position: absolute; inset: 0; z-index: 0; }
.tech-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.25) saturate(0.5); opacity: 0; transition: opacity 0.7s ease; }
.tech-bg-img.active { opacity: 1; }
.tech-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.92) 100%); z-index: 1; }

.tech-highlights-header { position: relative; z-index: 10; padding: 80px 80px 40px; flex-shrink: 0; }
.tech-highlights-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #3db451; margin-bottom: 14px; }
.tech-highlights-header h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.05; }

.tech-cards-row {
    position: relative;
   
   padding: 0 60px;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0);
     align-items: end; 
}

.tech-card {
    padding: 32px 28px 36px;
    border-right: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: visible;
    background: transparent;
}
.tech-card:last-child { border-right: none; }

.tech-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #3db451;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.tech-card.active {
    background: rgba(255,255,255,0.05);
   
}
.tech-card.active::before { transform: scaleX(1); }
.tech-card.active .tech-card-icon { color: #3db451; }

.tech-card-num { font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: #3db451; margin-bottom: 14px; }
.tech-card-icon { margin-bottom: 14px; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.tech-card h3 { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.35; margin: 0; }

.tech-card-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.35s ease 0.1s, margin-top 0.4s ease;
    margin-top: 0;
}
.tech-card.active .tech-card-body {
    max-height: 260px;
    opacity: 1;
    margin-top: 18px;
}
.tech-card.active {
    background: rgba(255,255,255,0.05);
   
}
.tech-card-body p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 14px; }
.tech-card-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.tech-card-body ul li { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.45); padding-left: 14px; position: relative; line-height: 1.5; }
.tech-card-body ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 4px; height: 4px; border-radius: 50%; background: #3db451; }

@media (max-width: 1024px) {
    .tech-cards-row { grid-template-columns: repeat(2, 1fr); }
    .tech-card { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .tech-highlights-header { padding: 60px 40px 30px; }
    .tech-highlights { min-height: auto; }
}
@media (max-width: 768px) {
    .tech-cards-row { grid-template-columns: 1fr; }
    .tech-highlights-header { padding: 50px 24px 24px; }
    .tech-card { padding: 24px 24px 28px; }
    .tech-card.active .tech-card-body { max-height: 400px; }
}


.compliance-strip { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 46px 0; }
.compliance-strip-inner { max-width: 1600px; margin: 0 auto; padding: 0 0px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.compliance-strip-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #3db451; white-space: nowrap; flex-shrink: 0; }
.compliance-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.compliance-items-row { display: flex; gap: 30px; flex-wrap: wrap; flex: 1; }
.comp-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); white-space: nowrap; }
.comp-dot { width: 6px; height: 6px; border-radius: 50%; background: #3db451; flex-shrink: 0; }

.final-cta { background: #000; padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 100%,rgba(61,180,81,0.08) 0%,transparent 70%); pointer-events: none; }
.final-cta-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.final-cta h2 { font-size: clamp(36px,5.5vw,64px); font-weight: 550; color: #fff; line-height: 1.0; letter-spacing: -2px; margin-bottom: 20px; }
.final-cta h2 em { font-style: normal; color: #3db451; }
.final-cta p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 44px; }
.final-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

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

@media (max-width: 1024px) {
    .sec-hero-content, .intro-strip-inner, .products-wrap-header, .product-grid, .how-header-inner, .how-video-inner, .deploy-inner, .compliance-strip-inner { padding-left: 40px; padding-right: 40px; }
    .how-row { grid-template-columns: 1fr; min-height: auto; }
    .how-row .how-row-text { order: 2; }
    .how-row .how-row-media { order: 1; height: 300px; }
    .how-row-reverse .how-row-text { order: 2; }
    .how-row-reverse .how-row-media { order: 1; }
    .how-row-text { padding: 48px 40px; }
    .how-video-inner { grid-template-columns: 1fr; gap: 40px; }
    .products-wrap-header { flex-direction: column; align-items: flex-start; }
    .products-wrap-header p { text-align: left; max-width: 100%; }
    .deploy-panel { grid-template-columns: 1fr; }
    .intro-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .final-cta-inner { padding: 0 40px; }
}

@media (max-width: 768px) {
    .sec-hero-content, .intro-strip-inner, .products-wrap-header, .product-grid, .how-header-inner, .how-video-inner, .deploy-inner, .compliance-strip-inner { padding-left: 24px; padding-right: 24px; }
    .product-grid { grid-template-columns: 1fr; }
    .final-cta-inner { padding: 0 24px; }
    .final-cta-btns { flex-direction: column; }
    .final-cta-btns a { text-align: center; }
    .deploy-tab { padding: 12px 18px; font-size: 10px; }
    .compliance-items-row { gap: 16px; }
    .comp-item { font-size: 12px; white-space: normal; }
    .how-row-text { padding: 40px 24px; }
    .how-row .how-row-media { height: 240px; }
    .how-header { padding: 70px 0 60px; }
    .how-video-row { padding: 60px 0; }
    .sec-hero-actions { flex-direction: column; }
    .sec-hero-actions a { text-align: center; }
}

/* ==============================================
   DEFENCE PAGE STYLES
   ============================================== */

:root {
    --def-navy: #000000;
    --def-slate: #0d0d0d;
    --def-mid: #1a1a1a;
    --def-border: rgba(255,255,255,0.08);
    --def-accent: #22c55e;
    --def-accent-dim: rgba(46, 46, 46, 0.15);
    --def-gold: #f59e0b;
    --def-red: #ef4444;
    --def-green: #22c55e;
    --def-good: #22c55e;
    --def-bad: #ef4444;
    --def-moderate: #f59e0b;
}

.def-hero .sec-hero-bg img { filter: brightness(0.35) contrast(1.2) saturate(0.5); }
.def-hero .sec-hero-bg::after { background: linear-gradient(170deg, rgba(0, 0, 0, 0.684) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.98) 100%); }

.def-hero-scan { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.def-hero-scan::after { content: ''; position: absolute; top: -2px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #3db451, transparent); animation: scanLine 6s linear infinite; }
@keyframes scanLine { 0% { top: -2px; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

.def-hero-grid { position: absolute; inset: 0; z-index: 2; background-image: linear-gradient(rgba(0, 0, 0, 0.735) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.838) 1px, transparent 1px); background-size: 60px 60px; animation: gridPulse 10s ease-in-out infinite; pointer-events: none; }
@keyframes gridPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }

.def-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--def-accent); text-transform: uppercase; margin-bottom: 20px; position: relative; padding-left: 36px; }
.def-hero-eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 24px; height: 1px; background: var(--def-accent); }

.def-hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: stretch; background: rgb(0, 0, 0); backdrop-filter: blur(12px); border-top: 1px solid var(--def-border); max-width: none; }
.def-hstat { flex: 1; padding: 20px 32px; display: flex; flex-direction: column; gap: 4px; }
.def-hstat-num { font-size: 28px; font-weight: 800; color: var(--def-accent); letter-spacing: -1px; line-height: 1; }
.def-hstat-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; text-transform: uppercase; }
.def-hstat-div { width: 1px; background: var(--def-border); margin: 12px 0; }
.sec-hero-content { padding-bottom: 120px; }

.def-need { background: #f7f8fa; padding: 100px 0 90px; }
.def-need-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.def-need-header { margin-bottom: 60px; max-width: 640px; }
.def-need-header h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #0b1629; letter-spacing: -1.5px; line-height: 1.05; margin-top: 16px; }
.def-need-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.def-need-card { background: #fff; border: 1px solid #e8ecf2; border-radius: 4px; padding: 32px 28px 28px; transition: border-color 0.25s ease, transform 0.25s ease; }
.def-need-card:hover { border-color: var(--def-accent); transform: translateY(-3px); }
.def-need-icon { width: 52px; height: 52px; border-radius: 4px; background: #000; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--def-accent); }
.def-need-card h3 { font-size: 16px; font-weight: 700; color: #0b1629; margin-bottom: 12px; letter-spacing: -0.3px; }
.def-need-card p { font-size: 14px; color: #5a6675; line-height: 1.7; }

.waveband-tool { background: var(--def-navy); padding: 100px 0 90px; border-top: 1px solid var(--def-border); border-bottom: 1px solid var(--def-border); }
.waveband-tool-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.waveband-tool-header { margin-bottom: 60px; max-width: 680px; }
.waveband-tool-header h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.05; margin: 16px 0 16px; }
.waveband-tool-header h2 span { color: rgba(255,255,255,0.35); }
.waveband-tool-header p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.7; }

.spectrum-bar-wrap { margin-bottom: 40px; user-select: none; }
.spectrum-bar-labels { display: flex; justify-content: space-between; margin-bottom: 8px; }
.spectrum-bar-labels span { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); text-transform: uppercase; flex: 1; text-align: center; }
.spectrum-bar { height: 8px; border-radius: 4px; display: flex; overflow: hidden; }
.sb-seg { flex: 1; }
.sb-uv { background: #8b5cf6; }
.sb-vis { background: linear-gradient(90deg, #7c3aed, #3b82f6, #22c55e, #eab308, #f97316, #ef4444); }
.sb-nir { background: #dc2626; }
.sb-swir { background: #92400e; }
.sb-mwir { background: #7f1d1d; }
.sb-lwir { background: #450a0a; }
.spectrum-nm-row { display: flex; justify-content: space-between; margin-top: 8px; }
.spectrum-nm-row span { font-size: 10px; color: rgba(255,255,255,0.2); }

.wb-tabs { display: flex; gap: 2px; margin-bottom: 2px; flex-wrap: wrap; }
.wb-tab { flex: 1; min-width: 120px; padding: 16px 20px; background: var(--def-slate); border: none; border-bottom: 2px solid transparent; color: rgba(255,255,255,0.45); font-family: inherit; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; display: flex; flex-direction: column; gap: 3px; letter-spacing: 0.3px; }
.wb-tab span { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.25); letter-spacing: 0; }
.wb-tab:hover { background: var(--def-mid); color: rgba(255,255,255,0.8); }
.wb-tab.active { background: var(--def-mid); border-bottom-color: var(--def-accent); color: #fff; }
.wb-tab.active span { color: rgba(255,255,255,0.5); }

.wb-panels { background: var(--def-slate); border: 1px solid var(--def-border); }
.wb-panel { display: none; grid-template-columns: 1fr 1fr; gap: 0; }
.wb-panel.active { display: grid; }
.wb-panel-left { padding: 48px 48px; border-right: 1px solid var(--def-border); }
.wb-panel-right { padding: 48px 48px; }
.wb-band-tag { display: inline-block; padding: 6px 14px; border-radius: 2px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; margin-bottom: 20px; }
.wb-panel-left h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.2; }
.wb-panel-left p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 28px; }
.wb-strengths { display: flex; flex-direction: column; gap: 8px; }
.wb-str-item { display: flex; align-items: center; gap: 10px; font-size: 16px; color: rgba(255,255,255,0.6); }
.wb-str-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.wb-str-dot.good { background: var(--def-good); }
.wb-str-dot.bad { background: var(--def-bad); }
.wb-str-item.bad { color: rgba(255,255,255,0.35); }
.wb-use-header { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 14px; }
.wb-use-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 32px; }
.wb-use-tags span { padding: 5px 12px; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); border-radius: 2px; font-size: 12px; color: rgba(255,255,255,0.6); }
.wb-compare-table { border: 1px solid var(--def-border); border-radius: 2px; overflow: hidden; margin-bottom: 24px; }
.wb-crow { display: flex; border-bottom: 1px solid var(--def-border); }
.wb-crow:last-child { border-bottom: none; }
.wb-crow.header { background: rgba(255,255,255,0.04); }
.wb-ckey { flex: 1; padding: 10px 14px; font-size: 12px; color: rgba(255,255,255,0.4); border-right: 1px solid var(--def-border); }
.wb-cval { flex: 1.5; padding: 10px 14px; font-size: 12px; color: rgba(255,255,255,0.55); }
.wb-crow.header .wb-ckey, .wb-crow.header .wb-cval { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.wb-cval.excellent { color: var(--def-good); font-weight: 600; }
.wb-cval.moderate { color: var(--def-gold); }
.wb-cval.limited { color: rgba(255,255,255,0.3); }
.wb-system-link { font-size: 12px; color: rgba(255,255,255,0.35); padding-top: 12px; border-top: 1px solid var(--def-border); }
.wb-system-link strong { color: var(--def-accent); }

.product-filter-tabs { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.pf-tab { padding: 9px 20px; background: #f0f2f5; border: 1px solid #dde2ea; border-radius: 2px; font-family: inherit; font-size: 16px; font-weight: 600; color: #5a6675; cursor: pointer; transition: all 0.2s ease; }
.pf-tab:hover { border-color: var(--def-accent); color: var(--def-accent); }
.pf-tab.active { background: var(--def-navy); border-color: var(--def-navy); color: #fff; }
.pcard-desc { font-size: 16px; color: #ffffff61; line-height: 1.65; margin-bottom: 18px; }
.pcard-spec-table { border: 1px solid #e4e8f0; border-radius: 2px; overflow: hidden; margin-bottom: 20px; }
.pst-row { display: flex; border-bottom: 1px solid #e4e8f0; }
.pst-row:last-child { border-bottom: none; }
.pst-key { flex: 1.2; padding: 8px 12px; font-size: 11px; font-weight: 600; color: #ffffff61; background: #000000; border-right: 1px solid #e4e8f0; letter-spacing: 0.3px; }
.pst-val { flex: 2; padding: 8px 12px; font-size: 12px; font-weight: 500; color: #1e2d42; }
.pcard-featured { position: relative; border-top: 2px solid var(--def-accent) !important; }
.pcard-featured-badge { position: absolute; top: 0; right: 0; background: var(--def-accent); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 5px 12px; z-index: 5; }
.pcard.hidden { display: none; }

.feature-block { padding: 0; }
.feature-block-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.fb-reverse { direction: rtl; }
.fb-reverse > * { direction: ltr; }
.fb-dark { background: var(--def-navy); }
.fb-dark .feature-block-content { padding: 80px 64px; }
.fb-dark .fb-eyebrow { color: var(--def-accent); }
.fb-dark h2 { color: #fff; }
.fb-dark h2 em { font-style: normal; color: rgba(255,255,255,0.4); }
.fb-dark .fb-lead { color: rgba(255,255,255,0.55); }
.fb-dark .fb-how-header { color: rgba(255,255,255,0.3); }
.fb-dark .fb-step-num { color: var(--def-accent); border-color: rgba(59,130,246,0.3); }
.fb-dark .fb-step-text { color: rgba(255,255,255,0.55); }
.fb-dark .fb-step-text strong { color: #fff; }
.fb-dark .fb-cap-dot { background: var(--def-accent); }
.fb-dark .fb-cap { color: rgba(255,255,255,0.6); }
.fb-light { background: #f7f8fa; }
.fb-light .feature-block-content { padding: 80px 64px; }
.fb-light .fb-eyebrow { color: var(--def-accent); }
.fb-light h2 { color: var(--def-navy); }
.fb-light h2 em { font-style: normal; color: rgba(11,22,41,0.3); }
.fb-light .fb-lead { color: #5a6675; }
.fb-light .fb-cap-dot { background: var(--def-accent); }
.fb-light .fb-cap { color: #5a6675; }
.feature-block-media { position: relative; overflow: hidden; }
.feature-block-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.6); }
.fb-spec-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.992); backdrop-filter: blur(12px); display: flex; padding: 20px 32px; gap: 40px; border-top: 1px solid var(--def-border); }
.fb-spec-item { display: flex; flex-direction: column; gap: 3px; }
.fb-spec-num { font-size: 28px; font-weight: 800; color: var(--def-accent); letter-spacing: -1px; line-height: 1; }
.fb-spec-label { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; }
.feature-block-content { display: flex; flex-direction: column; justify-content: center; }
.fb-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.feature-block-content h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.fb-lead { font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
.fb-how { margin-bottom: 28px; }
.fb-how-header { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.fb-steps { display: flex; flex-direction: column; gap: 16px; }
.fb-step { display: flex; gap: 16px; align-items: flex-start; }
.fb-step-num { width: 28px; height: 28px; border-radius: 50%; border: 1px solid; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.fb-step-text { font-size: 16px; line-height: 1.65; }
.fb-capabilities { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.fb-cap { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.5; }
.fb-cap-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.acik-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.acik-ch { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid #e4e8f0; border-radius: 2px; background: #fff; }
.fb-light .acik-ch { background: #fff; border-color: #e4e8f0; }
.acik-ch-badge { padding: 3px 8px; border-radius: 2px; font-size: 10px; font-weight: 800; color: #fff; letter-spacing: 1px; flex-shrink: 0; margin-top: 1px; }
.acik-ch-text { font-size: 12px; color: #5a6675; line-height: 1.5; }

.deploy-section { background: var(--def-slate); padding: 100px 0 90px; }
.deploy-section-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.deploy-section-header { max-width: 640px; margin-bottom: 60px; }
.deploy-section-header h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.05; margin: 16px 0 16px; }
.deploy-section-header p { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.deploy-tabs-row { display: flex; gap: 2px; margin-bottom: 2px; flex-wrap: wrap; }
.deploy-tab { flex: 1; min-width: 160px; padding: 18px 24px; background: rgba(255,255,255,0.04); border: 1px solid transparent; border-bottom: 2px solid transparent; color: rgba(255,255,255,0.45); font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 10px; letter-spacing: 0.3px; }
.deploy-tab svg { opacity: 0.4; transition: opacity 0.2s; }
.deploy-tab:hover { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.75); }
.deploy-tab:hover svg { opacity: 0.7; }
.deploy-tab.active { background: var(--def-navy); border-color: var(--def-border); border-bottom-color: var(--def-accent); color: #fff; }
.deploy-tab.active svg { opacity: 1; color: var(--def-accent); }
.deploy-panels { background: var(--def-navy); border: 1px solid var(--def-border); }
.deploy-panel { display: none; grid-template-columns: 1fr 1fr; gap: 0; }
.deploy-panel.active { display: grid; }
.deploy-panel-left { padding: 52px 52px; border-right: 1px solid var(--def-border); }
.deploy-panel-right { padding: 52px 52px; }
.deploy-env-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--def-accent); text-transform: uppercase; margin-bottom: 14px; }
.deploy-panel-left h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.25; }
.deploy-panel-left p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 24px; }
.deploy-challenge-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.deploy-challenge { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.5; padding-left: 12px; border-left: 2px solid rgba(59,130,246,0.3); }
.deploy-challenge strong { color: rgba(255,255,255,0.7); }
.deploy-systems-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: #22c55e; text-transform: uppercase; margin-bottom: 10px; }
.deploy-system-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.deploy-stag { padding: 6px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.4); transition: all 0.2s ease; }
.deploy-stag.active { background: rgba(0, 0, 0, 0.064); border-color: rgba(59,130,246,0.4); color: var(--def-accent); font-weight: 600; }
.deploy-req { padding: 18px 0; border-bottom: 1px solid var(--def-border); }
.deploy-req:first-child { padding-top: 0; }
.deploy-req:last-child { border-bottom: none; }
.deploy-req-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: rgb(86 249 134 / 75%); text-transform: uppercase; margin-bottom: 6px; }
.deploy-req-val { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.def-value-grid .value-card { border-top: 2px solid var(--def-accent); }
.def-value-grid .value-icon { color: var(--def-accent); }

@media (max-width: 1200px) {
    .def-need-grid { grid-template-columns: 1fr 1fr; }
    .feature-block-inner { grid-template-columns: 1fr; min-height: auto; }
    .feature-block-media { height: 360px; }
    .fb-reverse { direction: ltr; }
    .wb-panel { grid-template-columns: 1fr; }
    .wb-panel-left { border-right: none; border-bottom: 1px solid var(--def-border); }
}

@media (max-width: 1024px) {
    .waveband-tool-inner, .def-need-inner, .deploy-section-inner { padding: 0 40px; }
    .wb-tabs { flex-wrap: wrap; }
    .wb-tab { flex: none; min-width: 48%; }
    .deploy-panel { grid-template-columns: 1fr; }
    .deploy-panel-left { border-right: none; border-bottom: 1px solid var(--def-border); }
}

@media (max-width: 768px) {
    .def-need-grid { grid-template-columns: 1fr; }
    .waveband-tool-inner, .def-need-inner, .deploy-section-inner { padding: 0 24px; }
    .def-hero-stats { position: relative; flex-wrap: wrap; }
    .def-hstat { flex: 1 1 40%; }
    .def-hstat-div { display: none; }
    .wb-panel-left, .wb-panel-right, .deploy-panel-left, .deploy-panel-right, .feature-block-content, .fb-dark .feature-block-content, .fb-light .feature-block-content { padding: 32px 24px; }
    .acik-channels { grid-template-columns: 1fr; }
    .deploy-tabs-row { flex-direction: column; }
    .deploy-tab { min-width: 100%; }
    .wb-tab { min-width: 100%; }
}

/* ==============================================
   INDEX PAGE SECTIONS
   ============================================== */

.idx-beyond { display: none; }

.idx-about { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.06); }
.idx-about-inner { max-width: 1400px; margin: 0 auto; padding: 96px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.idx-about-eyebrow { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #3db451; margin-bottom: 20px; }
.idx-about-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 3.8vw, 50px); font-weight: 700; color: #fff; letter-spacing: -1.8px; line-height: 1.06; margin: 0 0 28px; }
.idx-about-body { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.85; margin: 0 0 36px; }
.idx-about-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.idx-about-stat-num { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.idx-about-stat-label { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; }
.idx-about-right { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 64px; display: flex; flex-direction: column; gap: 32px; }
.idx-about-quote { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; color: #fff; letter-spacing: -0.8px; line-height: 1.3; padding-left: 24px; border-left: 3px solid #3db451; margin: 0; }
.idx-about-detail { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.85; margin: 0; }
.idx-about-detail strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.idx-about-trio { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,0.07); }
.idx-about-trio-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
.idx-about-trio-item:last-child { border-bottom: none; }
.idx-about-trio-item:hover { background: rgba(255,255,255,0.02); }
.idx-about-trio-dot { width: 6px; height: 6px; background: #3db451; border-radius: 50%; flex-shrink: 0; }
.idx-about-trio-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); min-width: 110px; }
.idx-about-trio-text { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.32); line-height: 1.5; }

.idx-ai { background: #000; overflow: hidden; position: relative; min-height: 600px; }
.idx-ai-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 600px; position: relative; z-index: 2; }
.idx-ai-video-bg { position: absolute; inset: 0; z-index: 0; }
.idx-ai-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.idx-ai-video-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.82); }
.idx-ai-visual { display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.idx-ai-head-wrap { position: relative; width: 340px; height: 400px; }
.idx-ai-head-wrap svg { width: 100%; height: 100%; opacity: 0.85; }
.idx-ai-scan { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #3db451, transparent); animation: aiScan 3s ease-in-out infinite; box-shadow: 0 0 12px #3db451; }
@keyframes aiScan { 0% { top: 10%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 90%; opacity: 0; } }
.idx-ai-content { padding: 80px 0 80px 60px; }
.idx-ai-eyebrow { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #3db451; margin-bottom: 20px; }
.idx-ai-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 3.8vw, 50px); font-weight: 700; color: #fff; letter-spacing: -1.8px; line-height: 1.06; margin: 0 0 20px; }
.idx-ai-body { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.85; margin: 0 0 32px; }
.idx-ai-list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 12px; }
.idx-ai-list li { display: flex; align-items: flex-start; gap: 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.5; }
.idx-ai-list li::before { content: ''; width: 5px; height: 5px; background: #3db451; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

.idx-sectors { background: #000; padding: 96px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.idx-sectors-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.idx-sectors-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.idx-sectors-h { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.05; margin: 0; }
.idx-sectors-sub { font-size: 14px; color: rgba(255,255,255,0.35); max-width: 260px; line-height: 1.75; text-align: right; margin: 0; flex-shrink: 0; }
.idx-sectors-grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; min-height: 500px; }
.idx-scard { background: #0c0c0c; border: 1px solid rgba(255,255,255,0.05); text-decoration: none; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background 0.3s ease; padding: 40px 38px; }
.idx-scard:hover { background: #111; }
.idx-scard::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #3db451; transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.idx-scard:hover::after { transform: scaleX(1); }
.idx-scard--large { grid-row: 1 / 3; padding: 52px 48px; justify-content: flex-end; }
.idx-scard--large .idx-scard-bg { position: absolute; inset: 0; z-index: 0; }
.idx-scard--large .idx-scard-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.3); transition: filter 0.5s; }
.idx-scard--large:hover .idx-scard-bg img { filter: brightness(0.3) saturate(0.4); }
.idx-scard--large > *:not(.idx-scard-bg) { position: relative; z-index: 1; }
.idx-scard-num { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; color: rgba(255,255,255,0.2); text-transform: uppercase; margin-bottom: 16px; display: block; }
.idx-scard--large .idx-scard-num { color: rgba(255,255,255,0.4); }
.idx-scard-icon { width: 50px; height: 50px; border: 1px solid rgba(61,180,81,0.2); background: rgba(61,180,81,0.05); display: flex; align-items: center; justify-content: center; color: #3db451; margin-bottom: 22px; transition: all 0.3s; }
.idx-scard:hover .idx-scard-icon { background: rgba(61,180,81,0.1); border-color: rgba(61,180,81,0.4); }
.idx-scard--large .idx-scard-icon { width: 62px; height: 62px; }
.idx-scard-title { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.3px; margin: 0 0 10px; }
.idx-scard--large .idx-scard-title { font-size: 30px; margin-bottom: 14px; }
.idx-scard-desc { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.75; margin: 0 0 20px; flex: 1; }
.idx-scard--large .idx-scard-desc { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 340px; }
.idx-scard-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 22px; }
.idx-scard-tag { padding: 4px 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); font-size: 10px; color: rgba(255,255,255,0.28); }
.idx-scard-arrow { font-size: 20px; color: #3db451; display: inline-block; transition: transform 0.25s; line-height: 1; }
.idx-scard:hover .idx-scard-arrow { transform: translateX(8px); }
.idx-scard--sm { flex-direction: row; align-items: flex-start; gap: 24px; padding: 36px 38px; }
.idx-scard--sm .idx-scard-icon { flex-shrink: 0; margin-bottom: 0; margin-top: 2px; }
.idx-scard--sm .idx-scard-body { flex: 1; display: flex; flex-direction: column; }
.idx-scard--sm .idx-scard-desc { flex: none; margin-bottom: 16px; }

.idx-quote { background: #000; border-top: 1px solid rgba(255,255,255,0.06); }
.idx-quote-inner { max-width: 1400px; margin: 0 auto; padding: 72px 80px; display: grid; grid-template-columns: 1fr 1px 1fr; gap: 72px; align-items: center; }
.idx-quote-line { background: rgba(255,255,255,0.08); align-self: stretch; }
.idx-quote-text { font-size: clamp(18px, 2.2vw, 26px); font-weight: 700; color: #fff; letter-spacing: -0.3px; line-height: 1.35; padding-left: 26px; border-left: 3px solid #3db451; margin: 0; }
.idx-quote-body { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.85; margin: 0; }
.idx-quote-body strong { color: rgba(255,255,255,0.78); font-weight: 600; }

.idx-partner { background: #f0f2f1; padding: 88px 0; border-top: 1px solid #e5e5e5; }
.idx-partner-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.idx-partner-h { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: #0b0b0b; letter-spacing: -1.5px; line-height: 1.05; margin: 0 0 16px; }
.idx-partner-lead { font-size: 15px; color: #555; line-height: 1.8; margin: 0; }
.idx-partner-list { border: 1px solid #e0e0e0; }
.idx-pitem { display: flex; align-items: center; gap: 20px; padding: 22px 28px; border-bottom: 1px solid #e8e8e8; background: #fff; transition: background 0.2s, padding-left 0.25s; }
.idx-pitem:last-child { border-bottom: none; }
.idx-pitem:hover { background: #f7fffa; padding-left: 36px; }
.idx-pitem-icon { width: 36px; height: 36px; background: rgba(61,180,81,0.08); display: flex; align-items: center; justify-content: center; color: #3db451; flex-shrink: 0; }
.idx-pitem h4 { font-size: 14px; font-weight: 700; color: #0b0b0b; margin: 0 0 3px; }
.idx-pitem p { font-size: 12px; color: #777; line-height: 1.5; margin: 0; }

@media (max-width: 1024px) {
    .idx-about-inner { grid-template-columns: 1fr; gap: 56px; padding: 72px 40px; }
    .idx-about-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 48px; }
    .idx-ai-inner { grid-template-columns: 1fr; padding: 0 40px; }
    .idx-ai-visual { padding: 60px 0 20px; }
    .idx-ai-head-wrap { width: 240px; height: 280px; }
    .idx-ai-content { padding: 20px 0 80px; }
    .idx-sectors-inner, .idx-partner-inner, .idx-quote-inner { padding-left: 40px; padding-right: 40px; }
    .idx-sectors-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .idx-scard--large { grid-row: auto; justify-content: flex-start; }
    .idx-sectors-head { flex-direction: column; align-items: flex-start; }
    .idx-sectors-sub { text-align: left; max-width: 100%; }
    .idx-partner-inner { grid-template-columns: 1fr; gap: 44px; }
    .idx-quote-inner { grid-template-columns: 1fr; gap: 40px; }
    .idx-quote-line { display: none; }
}

@media (max-width: 768px) {
    .idx-about-inner { padding: 60px 24px; }
    .idx-about-stats { flex-wrap: wrap; gap: 24px; }
    .idx-ai-inner { padding: 0 24px; }
    .idx-ai-head-wrap { width: 180px; height: 210px; }
    .idx-ai-content { padding: 0 0 64px; }
    .idx-sectors-inner, .idx-partner-inner, .idx-quote-inner { padding-left: 24px; padding-right: 24px; }
    .idx-sectors-grid { grid-template-columns: 1fr; }
    .idx-scard--sm { flex-direction: column; }
    .idx-sectors { padding: 72px 0; }
    .idx-partner { padding: 64px 0; }
}

/* INDUSTRIES SECTION */

.industries-section { background: #0a0a0a; }
.industries-header { max-width: 1600px; margin: 0 auto; padding: 88px 80px 52px; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.industries-eyebrow { display: block; font-size: 10px; font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase; color: #3db451; margin-bottom: 16px; }
.industries-h { font-size: clamp(30px, 3.8vw, 52px); font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1.02; margin: 0; }
.industries-header-right { flex-shrink: 0; max-width: 320px; }
.industries-header-right p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.8; margin: 0 0 24px; text-align: right; }

.industries-photo-grid { max-width: 1600px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.industries-photo-item { position: relative; overflow: hidden; height: 550px; display: block; text-decoration: none; }
.industries-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s ease; filter: brightness(0.55) saturate(0.7); }
.industries-photo-item:hover img { transform: scale(1.04); filter: brightness(0.7) saturate(0.85); }
.industries-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%); transition: opacity 0.35s; }
.industries-photo-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 32px 28px; }
.industries-photo-num { display: block; font-size: 10px; font-weight: 800; letter-spacing: 2.5px; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 10px; }
.industries-photo-title { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.3px; margin: 0 0 16px; line-height: 1.2; }
.industries-photo-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s, gap 0.2s; }
.industries-photo-item:hover .industries-photo-link { color: #3db451; gap: 14px; }
.industries-photo-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #3db451; transform: scaleX(0); transform-origin: left; transition: transform 0.38s ease; }
.industries-photo-item:hover::after { transform: scaleX(1); }

.industries-cards { max-width: 1600px; margin: 0 auto; padding: 2px 80px 88px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.industries-card { background: #111; border: 1px solid rgba(255,255,255,0.06); border-top: none; padding: 32px 32px 28px; text-decoration: none; display: flex; align-items: flex-start; gap: 20px; transition: background 0.25s ease; position: relative; }
.industries-card:hover { background: #161616; }
.industries-card-icon { width: 44px; height: 44px; border: 1px solid rgba(61,180,81,0.18); background: rgba(61,180,81,0.05); display: flex; align-items: center; justify-content: center; color: #3db451; flex-shrink: 0; margin-top: 3px; transition: background 0.25s, border-color 0.25s; }
.industries-card:hover .industries-card-icon { background: rgba(61,180,81,0.1); border-color: rgba(61,180,81,0.35); }
.industries-card-title { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.2px; margin: 0 0 7px; }
.industries-card-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.65; margin: 0 0 14px; }
.industries-card-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.industries-card-tag { padding: 3px 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); font-size: 9px; font-weight: 500; letter-spacing: 0.5px; color: rgba(255,255,255,0.25); }

@media (max-width: 1024px) {
    .industries-header, .industries-photo-grid, .industries-cards { padding-left: 40px; padding-right: 40px; }
    .industries-header { flex-direction: column; align-items: flex-start; padding-bottom: 40px; }
    .industries-header-right { max-width: 100%; }
    .industries-header-right p { text-align: left; }
    .industries-photo-item { height: 320px; }
}

@media (max-width: 768px) {
    .industries-header, .industries-photo-grid, .industries-cards { padding-left: 24px; padding-right: 24px; }
    .industries-header { padding-top: 64px; }
    .industries-photo-grid, .industries-cards { grid-template-columns: 1fr; }
    .industries-photo-item { height: 280px; }
    .industries-card { border-top: 1px solid rgba(255,255,255,0.06); }
}

body { font-family: 'Plus Jakarta Sans', sans-serif; }

.hero-content h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #3db451; margin: 0 0 15px; }
.hero-content h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(75px, 4vw, 54px); font-weight: 700; line-height: 1.12; letter-spacing: -1.5px; color: rgba(255,255,255,0.92); margin: 0 0 16px; max-width: 800px; }
.hero-content h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 400; color: rgba(255,255,255,0.65); letter-spacing: 0; margin: 0 0 36px; text-align: center; }

.hero-see-beyond { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 6; display: flex; flex-direction: column; justify-content: center; padding: 0 80px; pointer-events: none; }
.hero-see-beyond-label { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #3db451; margin-bottom: 20px; }
.hero-see-beyond-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(56px, 8vw, 112px); font-weight: 800; color: #fff; letter-spacing: -4px; line-height: 0.9; margin: 0; pointer-events: all; }
.hero-see-beyond-h em { font-style: normal; color: #3db451; }

.idx-section-eyebrow { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #3db451; margin-bottom: 16px; }
.industries-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 3.8vw, 50px) !important; font-weight: 700 !important; letter-spacing: -1.8px !important; line-height: 1.06 !important; }
.industries-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px !important; font-weight: 700 !important; letter-spacing: 3.5px !important; }
.industries-photo-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px !important; font-weight: 700 !important; letter-spacing: -0.5px !important; }
.industries-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px !important; font-weight: 700 !important; }
.card-title { font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 20px !important; font-weight: 700 !important; letter-spacing: -0.5px !important; }

@media (max-width: 1024px) {
    .hero-see-beyond { padding: 0 40px; }
}
@media (max-width: 768px) {
    .hero-see-beyond { padding: 0 24px; }
    .hero-see-beyond-h { letter-spacing: -2px; }
}