.site-header{
    position:sticky;
    top:0;
    background:#fff;
    z-index:999;
    border-bottom:1px solid #eee;
}

.header-inner{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.main-navigation ul{
    display:flex;
    gap:30px;
}

.main-navigation a{
    color:#555f69;
    font-weight:500;
}

.main-navigation a:hover {
    color:#111827;
}

.main-navigation .current-menu-item a {
    color:#111827;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        #0e1f30,
        #0e1f30
    );
    color:#fff;
    padding:8px 16px;
    font-size: 14px;
    border-radius: 10px;
}

/* ==========================
   SECTION TITLES
========================== */

.section-title {
    max-width: 900px;
    margin-bottom: 24px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

/* ==========================
   SECTION TITLES
========================== */

.section-title {
    max-width: 900px;
    margin-bottom: 24px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    padding: 5px 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--heading);
}

.btn-secondary:hover {
    background: #f3f5f8;
}


.veris-hero {
    padding: 120px 0;
    overflow: hidden;
    background: #fafafa;
    background-image: radial-gradient(1200px 600px at 80% -10%, lab(76.423% -41.3108 54.1025 / .18), transparent 60%), radial-gradient(900px 500px at 0% 0%, lab(11.1223% -2.33959 -13.6099 / .06), transparent 60%);
}

.veris-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.veris-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #82d04f;
    animation: pulse 1.8s infinite;
}

.hero-title {
    margin-top: 24px;
    max-width: 900px;
}

.hero-title span {
    color: #6b7280;
}

.hero-description {
    margin-top: 24px;
    max-width: 700px;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}


.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
}

.hero-note {
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
}

.hero-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(37, 99, 235, .20),
            transparent,
            rgba(16, 185, 129, .10));
}

.hero-stat {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    animation: float 6s ease-in-out infinite;
}

.hero-stat-left {
    left: -30px;
    bottom: -30px;
}

.hero-stat-right {
    top: -20px;
    right: -20px;
    animation-delay: 2s;
}

.stat-number {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
}

.stat-number.accent {
    color: #82d04f;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.3);
        opacity: .7;
    }
}

@keyframes float {

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

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

@media (max-width: 991px) {


    .veris-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 54px;
    }


}

@media (max-width: 767px) {


    .veris-hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }
	.veris-hero-grid {
		gap: 20px;
	}
	.hero-image-wrapper {
		height: 150px;
	}
	.hero-image img {
		height: 150px;
	}

}

.hero{
    padding:120px 0;
}

.hero h1{
    max-width:800px;
}

.hero p{
    margin-top:20px;
    max-width:600px;
}


/* ====================================
   PROBLEM SECTION
==================================== */

.veris-problem-section {
    padding: 120px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.problem-content .section-description {
    margin-top: 24px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.problem-list svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: #82d04f;
    stroke-width: 2;
    margin-top: 2px;
}

.problem-list span {
    color: var(--heading);
    font-size: 16px;
    line-height: 1.6;
}

.problem-note {
    margin-top: 24px;
    font-size: 14px;
    color: #6b7280;
}

@media(max-width:991px){

    .problem-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

}

@media(max-width:767px){

    .veris-problem-section{
        padding:80px 0;
    }

    .problem-list li{
        padding:20px;
    }

}
/* ====================================
   WHAT WE DO SECTION
==================================== */

.veris-what-we-do {
    padding: 120px 0;
    background: #fff;
}

.veris-what-we-do .section-header {
    max-width: 700px;
}

span.section-badge {
    text-transform: uppercase;
    color: #82d04f;
    font-weight: 700;
    font-size: 12px;
}

.veris-what-we-do .section-title {
    margin-top: 12px;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.what-we-do-card {
    height: 100%;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    transition: all .3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.what-we-do-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(130,208,79,.12);
    color: #82d04f;
    transition: all .3s ease;
}

.what-we-do-card:hover .card-icon {
    transform: rotate(5deg) scale(1.08);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

article.what-we-do-card {
    height: auto;
}

.what-we-do-card h5 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 24px;
}

.what-we-do-card p {
    margin-bottom: 0;
}
@media(max-width:991px){

    .what-we-do-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .veris-what-we-do{
        padding:80px 0;
    }

    .what-we-do-card{
        padding:30px;
    }

}

/* ====================================
   CONTENT IMAGE SECTION
==================================== */

.veris-content-image {
    padding: 120px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.content-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-image-wrapper {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.content-image-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.content-image-wrapper:hover img {
    transform: scale(1.04);
}

.content-image-content .section-title {
    margin-top: 12px;
}

.content-image-content .section-description {
    margin-top: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    color: var(--heading);
    font-size: 15px;
    font-weight: 600;
}

.text-link:hover {
    color: #82d04f;
}

.text-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform .3s ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

@media(max-width:991px){

    .content-image-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .content-image-media{
        order:1;
    }

    .content-image-content{
        order:2;
    }

}

@media(max-width:767px){

    .veris-content-image{
        padding:80px 0;
    }

}

/* ====================================
   WHY VERIS
==================================== */

.veris-why {
    padding: 120px 0;
    background: #0e1f30;
    color: #fff;
}

.why-header {
    max-width: 800px;
}

.section-badge-dark {
    display: inline-block;
    color: #82d04f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-title {
    margin-top: 12px;
    color: #fff;
}

.why-description {
    margin-top: 24px;
    color: rgba(255,255,255,.75);
    max-width: 720px;
}

.why-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.why-card {
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    transition: all .3s ease;
}

.why-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
}

.why-card-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.why-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #82d04f;
    color: #0e1f30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.why-card h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.why-card p {
    margin-top: 18px;
    margin-bottom: 0;
    color: rgba(255,255,255,.75);
}

@media(max-width:991px){

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

}

@media(max-width:767px){

    .veris-why{
        padding:80px 0;
    }

    .why-card{
        padding:24px;
    }

    .why-card-heading{
        align-items:flex-start;
    }

}

/* ====================================
   OUTCOMES SECTION
==================================== */

.veris-outcomes {
    padding: 120px 0;
    background: #fff;
}

.outcomes-header .section-title {
    margin-top: 12px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.outcome-card {
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
    transition: all .3s ease;
}

.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.outcome-value {
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
    color: var(--heading);
}

.outcome-description {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--body);
}

.outcomes-note {
    margin-top: 24px;
    font-size: 13px;
    color: #6b7280;
}

@media(max-width:1199px){

    .outcomes-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .veris-outcomes{
        padding:80px 0;
    }

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

    .outcome-card{
        padding:24px;
    }

    .outcome-value{
        font-size:42px;
    }

}

/* ====================================
   INDUSTRIES SECTION
==================================== */

.veris-industries {
    padding: 120px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

.industries-content {
    max-width: 700px;
}

.industries-content .section-description {
    margin-top: 16px;
}

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

/* Card */

.industry-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

/* Image */

.industry-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.industry-icon img {
    width: 20px;
    height: 20px;
}

.industry-card:hover .industry-image img {
    transform: scale(1.08);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(14, 31, 48, .85),
        rgba(14, 31, 48, .2),
        transparent
    );
}

/* Title */

.industry-title-wrap {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #82d04f;
    color: #0e1f30;

    font-size: 18px;
    font-weight: 700;
}

.industry-title-wrap h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Content */

.industry-content {
    padding: 20px;
}

.industry-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
}

/* Link */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading);
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.text-link:hover {
    color: #82d04f;
}

.text-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform .3s ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

/* ====================================
   TABLET
==================================== */

@media (max-width: 991px) {

    .veris-industries {
        padding: 90px 0;
    }

    .industries-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 767px) {

    .veris-industries {
        padding: 70px 0;
    }

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

    .industries-header {
        margin-bottom: 40px;
    }

    .industry-title-wrap {
        left: 16px;
        bottom: 16px;
    }

    .industry-content {
        padding: 18px;
    }

}

/* ====================================
   SUSTAINABILITY SECTION
==================================== */

.veris-sustainability {
    padding: 120px 0;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(130,208,79,.15);
    color: #82d04f;
    font-size: 13px;
    font-weight: 600;
}

.section-badge svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
}

.sustainability-content .section-title {
    margin-top: 20px;
}

.lead-text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
}

.sustainability-content p + p {
    margin-top: 20px;
}

.sustainability-card {
    padding: 40px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.card-icon svg {
    width: 36px;
    height: 36px;
    stroke: #82d04f;
    stroke-width: 2;
}

.sustainability-card h3 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 20px;
}

.sustainability-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sustainability-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}

.sustainability-list svg {
    width: 18px;
    height: 18px;
    stroke: #82d04f;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.sustainability-list span {
    color: var(--body);
    line-height: 1.7;
}

/* Tablet */

@media (max-width: 991px) {

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

/* Mobile */

@media (max-width: 767px) {

    .veris-sustainability {
        padding: 80px 0;
    }

    .sustainability-card {
        padding: 30px;
    }

    .lead-text {
        font-size: 18px;
    }

}

/* ===================================
   Global Presence
=================================== */

.veris-global-presence {
    padding: 120px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.global-header {
    max-width: 760px;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #82d04f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-icon {
    font-size: 18px;
}

.global-header h2 {
    margin-top: 12px;
}

.global-header p {
    margin-top: 18px;
    max-width: 700px;
}

.global-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: center;
}

.global-map {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.global-map img {
    width: 100%;
    display: block;
}

.global-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

.location-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flag {
    font-size: 28px;
}

.location-head h3 {
    margin: 0;
    font-size: 18px;
}

.location-card p {
    margin: 0;
    font-size: 14px;
}

.countries-card {
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 28px;
    background: rgba(255,255,255,.6);
}

.countries-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 12px;
}

.countries-card p {
    margin: 0;
    color: var(--heading);
    font-weight: 500;
     font-size: 14px;
}

/* Responsive */

@media (max-width: 991px) {

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

}

@media (max-width: 767px) {

    .veris-global-presence {
        padding: 80px 0;
    }

    .location-card,
    .countries-card {
        padding: 22px;
    }

    .location-head h3 {
        font-size: 16px;
    }

}

.testimonials-section {
    padding: 100px 20px;
}

.testimonials-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    max-width: 700px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #82d04f;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 600;
    color: #111827;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.quote-icon {
    font-size: 28px;
    color: #82d04f;
}

.rating {
    color: #82d04f;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    margin: 20px 0;
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    color: #1f2937;
}

.testimonial-card figcaption {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.testimonial-card figcaption h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.testimonial-card figcaption span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #6b7280;
}

/* Tablet */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .testimonial-card {
        padding: 24px;
    }
}

.brands-section {
    padding: 100px 0;
    background: #f8f9fb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
}

.brand-item {
    background: #fff;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: .3s ease;
}

.brand-item:hover {
    background: #f5f7fa;
}

.brand-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.brands-note {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

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

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

    .brand-item {
        height: 90px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    color: #fff;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.cta-bg-circle {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(130, 208, 79, 1);
    filter: blur(80px);
    z-index: 1;
}

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

.cta-content h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #82d04f;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-btn svg {
    width: 18px;
    height: 18px;
}

/* Tablet */
@media (max-width: 991px) {

    .cta-box {
        padding: 60px 40px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .cta-content p {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .cta-box {
        padding: 50px 25px;
        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-btn {
        width: auto;
        justify-content: center;
    }
}

.site-footer {
    margin-top: 100px;
    background: #f8f9fb;
    border-top: 1px solid #e5e7eb;
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-brand .custom-logo {
    max-height: 40px;
    width: auto;
}

.footer-desc {
    margin-top: 20px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.footer-menu,
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li,
.footer-links li {
    margin-bottom: 12px;
}

.footer-menu a,
.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: .3s;
}

.footer-menu a:hover,
.footer-links a:hover {
    color: #111827;
}

.footer-col address {
    font-style: normal;
    color: #6b7280;
    line-height: 1.5;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #6b7280;
}

footer ul li {
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom p {
    font-size: 14px;
}

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   Solutions Page
=================================== */
/* ==========================
   Solutions Hero
========================== */

.solutions-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f8fafc;
	background-image: radial-gradient(1200px 600px at 80% -10%, lab(76.423% -41.3108 54.1025 / .18), transparent 60%), radial-gradient(900px 500px at 0% 0%, lab(11.1223% -2.33959 -13.6099 / .06), transparent 60%);
}

.solutions-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #82d04f;
    margin-bottom: 15px;
}

.solutions-content h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 700;
    color: #1b2a3f;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    max-width: 700px;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform 8s ease;
}

/* Ken Burns Effect */
.image-wrapper:hover img {
    transform: scale(1.08);
}

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {

    .solutions-hero .container {
        grid-template-columns: 1fr;
    }

    .solutions-image {
        order: -1;
    }

    .solutions-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 767px) {

    .solutions-hero {
        padding: 70px 0;
    }

    .solutions-content h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 17px;
    }
}

.solutions-section {
    padding: 80px 0;
}

.solutions-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 48px;
    margin-bottom: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 4px 16px -4px lab(11.1223% -2.33959 -13.6099 / .12);
}

.solution-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    overflow:hidden;
    background:#f5f5f5;
}

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

.solution-icon svg {
    width: 28px;
    height: 28px;
}

.solution-number {
    margin-top: 24px;
    font-size: 14px;
    color: #6b7280;
    font-family: monospace;
}

.solution-title {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.solution-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solution-block h3,
.solution-result h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 12px;
}

.solution-block p,
.solution-result p {
    margin: 0;
    line-height: 1.8;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.solution-features svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #7ac943;
    margin-top: 2px;
}

.solution-result {
    padding: 20px;
    border-left: 4px solid #7ac943;
    background: #f8fafc;
    border-radius: 12px;
}

@media (max-width: 991px) {

    .solution-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .solution-features {
        grid-template-columns: 1fr;
    }

    .solution-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .solution-card {
        padding: 24px;
        border-radius: 20px;
    }

    .solution-title {
        font-size: 24px;
    }
}
