/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-blue: #0A2463;
    --secondary-blue: #1E88E5;
    --accent-blue: #00B4D8;
    --dark-bg: #0D1B2A;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --gradient-1: linear-gradient(50deg, #6099aa 60%, #dedede 100%);
    --gradient-2: linear-gradient(135deg, #1E88E5 0%, #00B4D8 100%);
    --gradient-3: linear-gradient(90deg, #1850bf 0%, #3481de 50%, #3481de 100%);
    --gradient-4: linear-gradient(90deg, #102123 0%, #0e3c42 80%);
    
    --custom-text-1: #102123;
	
    /* Typography */
    /* --font-primary: "Poppins", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    : "Poppins", var(--font-primary);*/
	--font-primary: "Poppins";
	--font-heading: "Poppins";
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

.f-left {float:left;}
.f-right {float:right;}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 13px;
    line-height: 1.6;
    color: var(--custom-text-1);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	background-image: linear-gradient(to bottom, #102123, #0e3c42);
	
    backdrop-filter: blur(10px);
    padding: 24px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-text {
/*
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;*/
	width:125px;
	height:30px;
	display:block;
	background-image: url("../img/logo.png");
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 26px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 27px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 4px solid transparent;
	text-align:center;
}

.btn-primary {
    background: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
}

.btn-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}


.cust-btn-primary {
    background: var(--white);
    color: var(--custom-text-1) ! important;
    border-color: var(--white);
}

.nav-menu a.cust-btn-primary {
	padding:4px 16px;
    border-radius: 16px;
}

.cust-btn-primary:hover {
    background: var(--primary-blue);
    color: var(--white) ! important;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn.large {
    padding: 18px 36px;
    font-size: 18px;
}

/* ===== SECTION STRUCTURE ===== */
.section {
    padding: var(--section-padding) 0;
}

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

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

.section.bg-gradient {
    background: var(--gradient-1);
    color: var(--white);
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-blue);
    margin-bottom: 12px;
}

.section-tag.light {
    color: var(--accent-blue);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    /*color: var(--primary-blue);*/
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-blue);
}

.section-intro {
    font-size: 24px;
    line-height: 1.1;
    max-width: 1100px;
    text-align: left;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 80vh;
    background: var(--gradient-1);
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.neural-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(30, 136, 229, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-top:80px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.hero-headline {
    padding-right:300px;
    font-family: var(--font-heading);
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease;
}

.hero-subheadline {
    width:320px;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 36px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-supporting {
    width:320px;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 48px;
    opacity: 0.85;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-ctas {
    text-align:center;
    width:320px;
    margin-bottom:62px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-ctas > .btn {
    width:260px;
	text-align:center;
	margin-bottom:20px;
}

.hero-img {
    position:absolute;
    right:0;
    bottom:0px;
    width:860px;
    line-height: 0;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}
.hero-img > img {
    width:100%;
    margin:0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding: 48px 0;
    background: var(--gradient-3);
    color: var(--white);
}


.stat-item {
    max-width: 270px;
    margin: 0 auto;
    padding-left: 100px;
    text-align: center;
	background-size: 70px;
	background-position: left;
	background-repeat: no-repeat;
}


.hero-stats > .item-wrap {position:relative}
.hero-stats > .item-wrap.sep-line:after {position:absolute;content:"";right:-24px;bottom:0;height:100%;border-right:1px solid #8c8cea}

.stat-item.item-1 {background-image: url("../img/ico_27.png")}
.stat-item.item-2 {background-image: url("../img/ico_200.png")}
.stat-item.item-3 {background-image: url("../img/ico_97.png")}


.stat-number {
    font-family: var(--font-heading);
    font-size: 62px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 400;
    opacity: 0.9;
}

.stat-label {
    font-size: 16px;
    font-weight: 300;
}

.hero-link {
    animation: fadeInUp 0.8s ease 1s backwards;
}

.link-arrow {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-normal);
}

.link-arrow:hover {
    gap: 12px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERITAGE SECTION ===== */
#heritage {
    background: var(--gradient-4);
    color: var(--white);
    padding:0;
}

#heritage .heritage-bg {
    width:100%;
    height:100%;
	background-image: url("../img/01heritage_bg.png");
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
    padding:120px 0 360px;
}

.heritage-content {
    max-width: 1200px;
    text-align: left;
}

#heritage .section-title {max-width:700px}

.heritage-headline {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

.heritage-body {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

.capabilities-grid {
    margin-top:160px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.capability-card {
    padding: 40px 32px;
    max-width: 420px;
    margin:0 auto;
    background: var(--gradient-3);
    border: 0;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
}

.capability-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 136, 229, 0.15);
}

.capability-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon > img {
    width:100%
}

.capability-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.capability-desc {
    font-size: 13px;
    line-height: 1.2;
    opacity: 0.85;
}

/* ===== PROBLEM SECTION ===== */
#problem .section-title {max-width:800px}

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

.problem-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    transform: translateY(-8px);
}

.problem-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.2);
    border-radius: 50%;
    color: var(--accent-blue);
    font-size: 28px;
    margin-bottom: 24px;
}

.problem-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.problem-cards-cust {margin-top:100px}
.problem-cards-cust > div {display:inline-block;width:100%;text-align:center}
.problem-cards-cust > div > div {width:50%}
.problem-cards-cust > div > div.card-1-2 {float:right}
.problem-cards-cust > div > div.card-1-1 {float:left}
.problem-cards-cust > div > div.card-2-1 {float:left}
.problem-cards-cust > div > div.card-2-2 {float:right}
.problem-cards-cust > div > div > img {max-width:100%/*606px*/;margin-top:40px}
.problem-cards-cust > div > div.card-list {text-align:left;margin-top:80px;display: grid;grid-template-columns: 1fr;}

.problem-cards-cust > div > div.card-list > .d-img {}
.problem-cards-cust > div > div.card-list > .d-img > img {width:100px}
.problem-cards-cust > div > div.card-list > .d-text {margin-bottom:6px;margin-top:20px}
.problem-cards-cust > div > div.card-list > .d-text > .p-title {font-size:24px;font-weight:500;padding-bottom:6px;}
.problem-cards-cust > div > div.card-list > .d-text > .p-desc {font-size: 16px;line-height: 1.2;opacity: 0.85;}

#problem > .container > .bottom-img {margin-top:180px}
#problem > .container > .bottom-img > img {max-width:100%}

/* ===== TECHNOLOGY SECTION ===== */

#technology {background: var(--gradient-4);}


#technology .section-title {color:var(--white);}
#technology .section-subtitle {color:var(--white);font-size:22px;font-weight:500}
#technology .section-intro {color:var(--white);font-size:16px;font-weight:400;max-width:700px}

#technology .tech-items {margin-top:100px}
#technology .tech-items > div {display:inline-block;width:100%;min-height:400px;margin-top:60px}
#technology .tech-items > div > div {height:400px;padding:0 30px;display: table;width:50%}
#technology .tech-items > div > div > .p-wrap {display: table-cell;vertical-align: middle;}
#technology .tech-items .f-left.img-wrap {text-align:right}
#technology .tech-items .f-right.img-wrap {text-align:left}
#technology .tech-items img {display:inline-block;width:100%;max-width:400px}

#technology .tech-items .p-wrap {width:100%;height:100%;}
#technology .tech-items .p-1.section-title {font-weight:500}
#technology .tech-items .p-2 {color:var(--white);padding-bottom:20px;}
#technology .tech-items .p-3 {color:var(--white);font-size:13px;padding:20px 0 20px 50px;

	background-image: url("../img/ico_brainwaves.png");
	background-size: 27px;
	background-position: left;
	background-repeat: no-repeat;}



.tech-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
}

.tech-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.tech-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 16px;
}

.tech-desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
}

/* ===== EVIDENCE SECTION ===== */
#evidence {background: var(--gradient-3);}
#evidence .section-title {color:var(--white);}
#evidence .section-subtitle {color:var(--white);font-size: 21px;font-weight: 500;}
#evidence .section-intro {color:var(--white);font-size: 15px;font-weight: 300;}





.evidence-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 60px;
    margin-top:120px;
    color: var(--white);
}


.evidence-grid:before {
    content:"";
    position: absolute;
    height:56%;
    top:22%;
    left:50%;
    border-left:1px solid #ededed;
    opacity: 0.6;
 }
.evidence-grid:after {
    content:"";
    position: absolute;
    width:36%;
    left:32%;
    top:50%;
    border-bottom:1px solid #ededed;
    opacity: 0.6;
}


.evidence-metrics {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.metric-item {
    position: relative;
    width:100%;
    max-width:500px;
    margin:0 auto;
    padding: 32px;
}

.metric-item:after {
    content:"";
    position: absolute;
    top:30px;
    right:15px;
    width:58px;
    height:58px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.metric-item.item-1:after {background-image: url(../img/ico_27.png);}
.metric-item.item-2:after {background-image: url(../img/ico_200.png);}
.metric-item.item-3:after {background-image: url(../img/ico_1.5.png);}
.metric-item.item-4:after {background-image: url(../img/ico_97.png);}


.metric-value {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}

.metric-value > .small {
    font-size: 42px;
    font-weight: 400;
}


.metric-label {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 0;
}

.metric-label > span {
    font-size: 14px;
    font-weight: 400;
}

.metric-detail {
    font-size: 14px;
}

.evidence-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.chart-container {
    width: 100%;
    max-width: 300px;
    margin-bottom: 24px;
}

.chart-caption {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

.publication-feature {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    padding: 48px;
    border: 1px solid #dbdbdb;
}

.publication-content {
        display: table;
}

.publication-content > .text-wrap {
        display: table-cell;
    vertical-align: middle;
}

.publication-img {
    text-align: center;
}
.publication-img > img {
    width:100%;
    max-width: 420px;
}

.publication-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 12px;
    color: var(--white);
    font-size: 36px;
}

.publication-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-blue);
    margin-bottom: 8px;
}

.publication-book {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fcce25;
    line-height: 1.2;
    margin-bottom: 8px;
}

.publication-book > span {
    color: var(--white);
}

.publication-author {
    padding-left:30px;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;

    /*padding: 20px 0 20px 50px;*/
    background-image: url(../img/ico_person.png);
    background-size: 14px;
    background-position: left;
    background-repeat: no-repeat;
    

}

.publication-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
}

/* ===== PRODUCTS SECTION ===== */


.products-grid-cust {}

.products-grid-cust .title-1 {display:inline-block;padding:6px 24px;font-size:20px;color:var(--white);background-color:#0e3c42;border-radius:24px}

.products-grid-cust .row-1 {display:inline-block;width:100%;margin-top:12px;margin-bottom:36px}
.products-grid-cust .row-1 > div {min-height:420px;}
.products-grid-cust .f-left {}
.products-grid-cust .f-left > .text-wrap {display: table-cell;vertical-align: bottom;}
.products-grid-cust .f-left {
display: table;width:50%;padding:36px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;}
.products-grid-cust .f-left.tab-1 {background-image: url("../img/05products_01.png");border-radius:24px 0 0 24px}
.products-grid-cust .f-left.tab-2 {background-image: url("../img/05products_02.png");border-radius:0 24px 24px 0}
.products-grid-cust .f-left.tab-3 {background-image: url("../img/05products_03.png");border-radius:24px 0 0 24px}
.products-grid-cust .f-left.tab-4 {background-image: url("../img/05products_04.png");border-radius:0 24px 24px 0}

    
.products-grid-cust .p-1 {color:var(--white);font-size: 23px;font-style: italic;margin-bottom:2px;line-height: 1.2;}
.products-grid-cust .p-1 > .large {font-size: 32px;font-weight:500}
.products-grid-cust .p-1 > .color-1 {display:inline-block;font-weight:500;font-size:14px;margin-left:20px;padding:2px 10px;font-style: italic;background-color:#fff}
.products-grid-cust .visible .p-1 > .color-1 {background-color:#6089c9;
    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
    }
.products-grid-cust .p-1 > .color-2 {display:inline-block;font-weight:500;font-size:14px;margin-left:20px;padding:0 10px;font-style: italic;background-color:#fff}
.products-grid-cust .visible .p-1 > .color-2 {background-color:#57a2ab;
    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
    }
.products-grid-cust .p-2 {color:var(--white);font-size: 17px;line-height: 1.2;margin-bottom:24px}
.products-grid-cust .p-2 > span {font-weight:500}
.products-grid-cust .p-3 {color:var(--white);font-size: 16px;font-weight:300;line-height: 1.3;}
.products-grid-cust .p-4 {color:var(--white);font-size: 16px;line-height: 1.2;margin-top:32px}

.products-grid-cust .p-3:before {content: "•";margin-right: 8px;color:inherit;}
  
.products-grid-cust .f-left.tab-4 {padding-bottom:2px}
.products-grid-cust .f-left.tab-4 .p-2 {margin-bottom:12px}


.products-grid-cust .f-left > img {max-width:100%}

.products-grid-cust .f-left.tab-5 > p {color: var(--custom-text-1)}
.products-grid-cust .f-left.tab-5 > p.p-1 {font-size: 26px;margin-bottom:12px}
.products-grid-cust .f-left.tab-5 > p.p-3 {padding-left:60px}




  
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--secondary-blue);
}

.product-card {
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}

.product-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(30, 136, 229, 0.15);
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary-blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.product-badge.consumer {
    background: var(--accent-blue);
}

.product-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.85;
}

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.product-features i {
    color: var(--secondary-blue);
    font-size: 16px;
}

/* ===== APPLICATIONS SECTION ===== */

#applications {
background-image: url("../img/06applicatons_bg.png");
	background-size: cover;
	background-position: 65%;
	background-repeat: no-repeat;}

.applications-grid-cust .p-slide-cust {padding-left:42px;
    background-image: url(../img/ico_check.png);
    background-size: 22px;
    background-position: left;
    background-repeat: no-repeat;
    font-weight:500;
    font-size:23px;
    line-height: 1.0;
    margin-bottom: 32px;}
.applications-grid-cust .p-slide-cust > span {
    font-size:16px;
    font-weight:300}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.application-card {
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-blue);
    transform: translateY(-8px);
}

.app-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
}

.app-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.app-desc {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== CONTACT SECTION ===== */

.contact .contact-headline {max-width:800px;font-size:52px;line-height:1.3;text-align:left;color: var(--custom-text-1)}
.contact {
    background: var(--light-bg);
    text-align:left;
}

.contact-content {
    margin: 0 auto;
    text-align: left;
}

.contact-headline {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.contact .contact-body {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 60px;
    opacity: 0.9;
    text-align:left;
    font-weight: 400;
    line-height:1.3;
    max-width:600px;
}

.contact-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}




@keyframes sparkle {
  from {
    background-position: 0% 100%;
  }
  to {
    background-position: 200% 100%;
  }
}


.shine_btn {
  display: inline-block;
  width:300px;height:50px;
  position: relative;
}

.shine_btn::before {
    animation: sparkle 4s infinite linear;
    background: linear-gradient(
    90deg,
    #7FEFBD 0%,
    #FFF689 11%,
    #EC0B43 22%,
    #7FEFBD 33%,
    #FFF689 44%,
    #EC0B43 55%,
    #7FEFBD 66%,
    #FFF689 77%,
    #EC0B43 88%,
    #7FEFBD 100%
    );
    background-size: 300% 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    filter: blur(3px);
    z-index: 1;
    transform: scale(0.99) translateY(3px);
}
.shine_btn > .btn-cust {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height:50px;
    border-radius: 35px;
    font-size:14px;
    padding:0;
    border:0;
    color: var(--custom-text-1);
    z-index: 2;
    background: white;
}



/* ===== FOOTER ===== */
.footer {
    background: var(    --gradient-4);
    color: var(--white);
    padding: 60px 0 32px;
}


.footer > .container > p {font-size:14px;font-weight:300}
.footer > .container > p > a {color: var(--white);text-decoration:none}
.footer .p-1.hi {color:#51e5d9;font-style: italic}
.footer .p-2 {text-align:right}


.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-location {
    font-size: 14px;
    opacity: 0.7;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-headline {
        width:100%;
        padding:0;
    }
    .container {width:100%}
    .hero-content {width:100%}
    .hero-subheadline {width:100%;}
    .hero-supporting {width:100%;}
    .hero-img {position:relative;width:100%}
    .hero-img > img {margin-top: -50px;}
    .hero-ctas {margin:0}
    
}


@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-headline {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .capabilities-grid,
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .evidence-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    


.evidence-grid:before {border-left:0}
.evidence-grid:after {border-bottom:0}


    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-cards-cust > div > div {width:100%}
    .problem-cards-cust > div > div.card-list > .d-img {text-align:center}
    .problem-cards-cust > div > div.card-list > .d-img > img {width:80px;margin-top:20px}
    .problem-cards-cust > div > div.card-list {grid-template-columns: 140px 1fr;margin-top:30px}
    
    
    #technology .tech-items > div > div {width:100%;height:100%;}
    #technology .tech-items .f-left.img-wrap {text-align:center;margin-bottom:40px}
    #technology .tech-items .f-right.img-wrap {text-align:center;margin-bottom:40px}
    
    
    .products-grid-cust .f-left {width:100%;}

    .products-grid-cust .f-left.tab-1 {border-radius:24px 24px 0 0}
    .products-grid-cust .f-left.tab-2 {border-radius:0 0 24px 24px}
    .products-grid-cust .f-left.tab-3 {border-radius:24px 24px 0 0}
    .products-grid-cust .f-left.tab-4 {border-radius:0 0 24px 24px}

}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: linear-gradient(to bottom, #102123, #0e3c42);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        align-items: flex-start;
        transition: right var(--transition-normal);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-headline {
        font-size: 40px;
    }
    
    .hero-subheadline {
        font-size: 20px;
    }
    
    .hero-stats {
        padding:30px 0;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-stats > .item-wrap {
        padding: 10px 0;
    }
    .hero-stats > .item-wrap.sep-line:after {
        right: 0;
        left: 10%;
        height: 0;
        border-right: 0;
        bottom:-16px;width:80%;border-bottom:1px solid #8c8cea;
    }

    
    .stat-number {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    
    .tech-number {
        font-size: 48px;
    }
    
    .publication-feature {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-headline {
        font-size: 32px;
    }
    
    .contact-ctas {
        flex-direction: column;
    }
}

/* ===== ANIMATIONS & UTILITIES ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
}

.slide-up.visible {
    animation: slideUp 0.6s ease forwards;
}

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