/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Introduction
- Details
- Services 1
- Services 2
- Services 3
- Projects
- Testimonials
- Contact
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
- Enterprise Contact Section
- Enterprise CTA (Contact block)
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f7f9fd
- Headings text - black #161223
- Body text - dark gray #53575a
- Buttons, icons - green #7dc22b
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: #53575a; 
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
	color: #161223;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: "Poppins"
}

h2 {
	color: #161223;
	font-weight: 600;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: "Poppins"
}

h3 {
	color: #161223;
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "Poppins"
}

h4 {
	color: #161223;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "Poppins"
}

h5 {
	color: #161223;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: "Poppins"
}

h6 {
	color: #161223;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: "Poppins"
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: "Poppins"
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #53575a;
	text-decoration: underline;
}

a:hover {
	color: #53575a;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.read-more {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
}

.read-more .fas {
	margin-left: 0.625rem;
	font-size: 1rem;
	vertical-align: -8%;
}

.green {
	color: #e3ce8b;
}

.bg-gray {
	background-color: #f7f9fd;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #e3ce8b;
	border-radius: 4px;
	background-color: #e3ce8b;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #161223; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #e3ce8b;
	border-radius: 4px;
	background-color: #e3ce8b;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #ffffff; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #161223;
	border-radius: 4px;
	background-color: transparent;
	color: #161223;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #161223;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #161223;
	border-radius: 4px;
	background-color: transparent;
	color: #161223;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #161223;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #161223;
	border-radius: 4px;
	background-color: transparent;
	color: #161223;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #161223;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-control-input,
.form-control-textarea {
	width: 100%;
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	border-radius: 4px;
	background-color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.5rem;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-textarea {
	display: block;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
}

.form-control-input:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #ffffff;
	border-radius: 4px;
	background-color: #161223;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #ffffff;
	background-color: transparent;
	color: #ffffff;
}


/**********************/
/* Navigation         */
/**********************/

/* 1. Bara de navigare (Navbar) */
.navbar {
    background-color: transparent !important; /* Transparent la început */
    font-weight: 600;
    font-size: 0.9375rem; /* Ușor mai mare pentru lizibilitate (15px) */
    line-height: 1rem;
    box-shadow: none;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.3s ease-in-out;
    z-index: 1040;
}

/* 2. Starea la Scroll (Solidă) */
.navbar.top-nav-collapse {
    background-color: #161223 !important; /* Navy Închis */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Umbră mai pronunțată */
}

/* Logo */
.navbar .navbar-brand {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    height: 42px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}

/* Logo mai mic la scroll */
@media (min-width: 992px) {
    .navbar.top-nav-collapse .logo-image img {
        height: 36px;
    }
}

/* 3. Butonul Hamburger (Mobil) - Alb & Vizibil */
.navbar-toggler {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    margin-right: 0;
}

.navbar-toggler-icon {
    /* Linii ALBE curate */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 30px;
    height: 30px;
    opacity: 1;
    filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.5)); /* Umbră mică pentru vizibilitate pe orice fundal */
}

/* 4. Link-uri Meniu */
.navbar .navbar-nav {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    align-items: center; /* Aliniere verticală pe centru */
}

.navbar .nav-item .nav-link {
    padding: 0.625rem 1rem;
    color: #ffffff !important; /* Alb Pur */
    text-decoration: none;
    transition: color 0.2s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Umbră text pentru contrast */
}

.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
    color: #e3ce8b !important; /* Auriu la Hover */
}

/* 5. Butonul CONTACT (transformat în Buton Premium) */
.navbar .nav-item .nav-link.nav-cta {
    background-color: #e3ce8b; /* Crem */
    color: #161223 !important; /* Text Navy */
    border-radius: 4px;
    padding: 8px 24px !important; /* Mai lat */
    margin-left: 10px;
    font-weight: 700;
    text-shadow: none; /* Fără umbră pe buton */
    border: 1px solid #e3ce8b;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(227, 206, 139, 0.2);
}

.navbar .nav-item .nav-link.nav-cta:hover {
    background-color: #ffffff; /* Alb la hover */
    border-color: #ffffff;
    color: #161223 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

/* 6. Dropdown Menu */
.navbar .dropdown .dropdown-menu {
    animation: fadeDropdown 0.2s;
}

@keyframes fadeDropdown {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.navbar .dropdown-menu {
    margin-top: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: #161223;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-radius: 8px;
    padding: 10px 0;
}

.navbar .dropdown-item {
    padding: 8px 20px;
    color: #eeeeee;
    font-weight: 600;
    font-size: 0.875rem;
}

.navbar .dropdown-item:hover {
    background-color: rgba(227, 206, 139, 0.1); /* Fundal fin auriu */
    color: #e3ce8b;
}

.navbar .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

/* 7. Social Icons */
.navbar .fa-stack {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}
.navbar .fa-stack-2x { color: #e3ce8b; transition: all 0.2s; }
.navbar .fa-stack-1x { color: #ffffff; transition: all 0.2s; }

.navbar .fa-stack:hover .fa-stack-2x { color: #ffffff; }
.navbar .fa-stack:hover .fa-stack-1x { color: #161223; }


/* ========================================= */
/* MOBILE MENU (Offcanvas)                   */
/* ========================================= */

@media (max-width: 991.98px) {
    /* Navbar pe mobil rămâne închisă la culoare pentru siguranță */
    .navbar {
        background-color: #161223 !important; 
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .navbar .logo-image img { height: 34px; }

    /* Container Meniu */
    .offcanvas-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        padding-left: 20px;
        padding-right: 20px;
        overflow-y: auto;
        background-color: #161223;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s ease, visibility 0.4s;
        display: block !important;
        z-index: 999;
    }

    .offcanvas-collapse.open {
        transform: translateX(0);
        visibility: visible;
    }

    .navbar-nav {
        margin-top: 20px;
        text-align: center;
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .nav-link {
        font-size: 18px !important;
        padding: 15px 0 !important;
        display: block;
    }

    /* Butonul Contact pe Mobil - Full Width */
    .navbar .nav-item .nav-link.nav-cta {
        margin: 20px 0 0 0;
        width: 100%;
        text-align: center;
        background-color: #e3ce8b;
        color: #161223 !important;
    }

    .navbar .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        border: none;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .offcanvas-collapse {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        width: auto;
        height: auto;
        padding: 0;
        overflow-y: visible;
        visibility: visible;
        background-color: transparent;
        transform: none;
        display: flex !important;
    }
}

/* ========================================= */
/* GLOBAL BUTTONS OVERRIDE - CREAM THEME     */
/* ========================================= */

/* 1. All Button Classes */
.btn-solid-lg,
.btn-outline-lg,
.btn-bd-final,
.btn-leader-gold,
.btn-invest-gold,
.btn-it-final,
.btn-steel-primary,
.btn-steel-gold,
.btn-pd-gold,
.btn-pd-engine,
.btn-trust-final,
.btn-trust-gold,
.btn-premium-submit,
.btn-strat-gold,
.btn-steel-solid,
.btn-steel-outline {
    background-color: #e3ce8b !important; /* Cream Gold */
    color: #161223 !important;            /* Dark Navy Text */
    border: 1px solid #e3ce8b !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(227, 206, 139, 0.3) !important;
    transition: all 0.3s ease-in-out !important;
}

/* 2. Hover Effect (Inverted) */
.btn-solid-lg:hover,
.btn-outline-lg:hover,
.btn-bd-final:hover,
.btn-leader-gold:hover,
.btn-invest-gold:hover,
.btn-it-final:hover,
.btn-steel-primary:hover,
.btn-steel-gold:hover,
.btn-pd-gold:hover,
.btn-pd-engine:hover,
.btn-trust-final:hover,
.btn-trust-gold:hover,
.btn-premium-submit:hover,
.btn-strat-gold:hover,
.btn-steel-solid:hover,
.btn-steel-outline:hover {
    background-color: #161223 !important; /* Dark Navy Background */
    color: #e3ce8b !important;            /* Cream Text */
    border-color: #161223 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 18, 35, 0.4) !important;
}

/* 3. Back To Top Button */
.back-to-top {
    background-color: #e3ce8b !important;
    color: #161223 !important;
}

.back-to-top:hover {
    background-color: #161223 !important;
    color: #e3ce8b !important;
}

/* 4. Text Links (Non-Buttons) */
.btn-invest-link,
.btn-steel-link,
.btn-pd-link,
.btn-strat-link {
    color: #161223 !important;
    border-bottom: 2px solid #e3ce8b !important;
}

.btn-invest-link:hover,
.btn-steel-link:hover,
.btn-pd-link:hover,
.btn-strat-link:hover {
    color: #e3ce8b !important;
}

/* 5. Icons inside buttons inherit color */
button i, a.btn i {
    color: inherit !important;
}


/*****************/
/*    Header     */
/*****************/
.header {
	position: relative;
}

.header #video-background {
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100; 
}

.header .header-content {
	padding-top: 11rem;
	padding-bottom: 9rem;
	background: linear-gradient(rgba(21, 35, 63, 0.5), rgba(21, 35, 63, 0.5));
	background-size: cover;
	text-align: center; 
}

.header .h1-large {
	margin-bottom: 2.25rem;
	color: #ffffff;
	font-size: 3rem;
	line-height: 3.75rem;
}


/************************/
/*     Introduction     */
/************************/
.cards-1 {
	padding-top: 9.125rem;
	padding-bottom: 5.25rem;
	text-align: center;
}

.cards-1 .h2-heading {
	margin-bottom: 1.125rem;
}

.cards-1 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.cards-1 .card {
	margin-bottom: 4rem;
	border: none;
	border-radius: 6px;
}

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-icon {
	width: 90px;
	height: 90px;
	margin-right: auto;
	margin-bottom: 2rem;
	margin-left: auto;
	border-radius: 50%;
	background-color: #e3ce8b;
	text-align: center;
}

.cards-1 .card-icon .fas {
	color: #ffffff;
	font-size: 2.125rem;
	line-height: 90px;
}

.cards-1 .card-title {
	margin-bottom: 0.625rem;
}

/*******************/
/*     Details     */
/*******************/


/**********************/
/*     Services 1     */
/**********************/
.split:not(.split-corporate) .area-1{
  height: 430px;
  background: url('../images/details-enterprise.jpg') center center no-repeat;
  background-size: cover;
}

/* Keep spacing for generic split sections */
.split:not(.split-corporate) .area-2{
  padding-top: 9.25rem;
  padding-bottom: 9.75rem;
}

/* IMPORTANT:
   Do NOT apply these generic typography rules to split-corporate,
   because they break the premium card spacing. */
.split:not(.split-corporate) h2{
  margin-bottom: 1.5rem;
}

.split:not(.split-corporate) p{
  margin-bottom: 2.25rem;
}

.split:not(.split-corporate) p:last-of-type{
  margin-bottom: 0;
}


/**********************/
/*     Services 2     */
/**********************/
.basic-2 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.basic-2 .image-container {
	margin-bottom: 4rem;
}

.basic-2 .image-container img {
	border-radius: 8px;
}

.basic-2 h2 {
	margin-bottom: 1.5rem;
}


/**********************/
/*     Services 3     */
/**********************/
.basic-3 {
	padding-top: 5rem;
	padding-bottom: 9.75rem;
}

.basic-3 .image-container {
	margin-bottom: 4rem;
}

.basic-3 .image-container img {
	border-radius: 8px;
}

.basic-3 h2 {
	margin-bottom: 1.5rem;
}


/********************/
/*     Projects     */
/********************/
.filter {
	padding-top: 9.5rem;
	padding-bottom: 5.625rem;
	text-align: center;
}

.filter h2 {
	margin-bottom: 2.625rem;
}

.filter .button-group {
	margin-bottom: 1.375rem;
}

.filter .button {
	margin-right: 0.25rem;
	margin-bottom: 0.75rem;
	margin-left: 0.25rem;
	padding: 0.125rem 0.875rem;
	border: none;
	background-color: #ffffff;
	color: #53575a;
	font-weight: 600;
	font-size: 0.875rem;
}

.filter .button:hover,
.filter .button.is-checked {
	background-color: #e3ce8b;
	color: #ffffff;
}

.filter .grid {
	margin-right: auto;
	max-width: 351px;
	margin-left: auto;
}

.filter .element-item {
	margin-bottom: 3rem;
}

.filter .element-item a {
	text-decoration: none;
}

.filter .element-item img {
	margin-bottom: 1.125rem;
	border-radius: 8px;
}

.filter .element-item p {
	text-align: left;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	position: relative;
	padding-top: 9.75rem;
	padding-bottom: 9.5rem;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 86%;
	text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .testimonial-image {
	width: 120px;
	height: 120px;
	margin-bottom: 2.25rem;
	border-radius: 50%;
}

.slider-1 .testimonial-text {
	margin-bottom: 1.75rem;
	font-size: 1.25rem;
	line-height: 2rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0.25rem;
	color: #161223;
}

.slider-1 .text-decoration {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
}


/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 9.25rem;
	padding-bottom: 8.5rem;
	background: linear-gradient(rgba(2, 15, 29, 0.1), rgba(2, 15, 29, 0.1)), url('../images/contact-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.form-1 .h2-heading {
	margin-bottom: 1.125rem;
	color: #ffffff;
}

.form-1 .p-heading {
	margin-bottom: 0.375rem;
	color: #ffffff;
}

.form-1 .list-unstyled {
	margin-bottom: 3.5rem;
	color: #ffffff;
}

.form-1 .list-unstyled a {
	color: #ffffff;
}

.form-1 .list-unstyled .fas {
	color: #e3ce8b;
}

.form-1 .form-control-input,
.form-1 .form-control-textarea {
	border-color: #374959;
	background-color: #293642;
	color: #efefef;
}

.form-1 .form-control-input::placeholder,
.form-1 .form-control-textarea::placeholder {
	color: #efefef;
}


/**********************/
/*     Statistics     */
/**********************/
.counter {
	padding-top: 9.75rem;
	padding-bottom: 4.375rem;
	text-align: center;
}

.counter .counter-cell {
	margin-bottom: 4rem;
}

.counter .purecounter {
	margin-bottom: 1.5rem;
	color: #e3ce8b;
	font-weight: 600;
	font-size: 5rem;
	line-height: 3rem;
}

.counter .counter-info {
	color: #161223;
	font-size: 0.875rem;
	line-height: 1.5rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.5rem;
	padding-bottom: 2rem;
	background-color: #161223;
}

.footer a {
	text-decoration: none;
}

.footer .footer-col {
	margin-bottom: 3rem;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: #9ba3b1;
}

.footer p,
.footer a,
.footer ul {
	color: #9ba3b1;
}

.footer .li-space-lg li {
	margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
	color: #293642;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
    color: #9ba3b1;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
    color: #e3ce8b;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	background-color: #161223;
	text-align: center;
}

.copyright p,
.copyright a {
	color: #9ba3b1;
	text-decoration: none;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed; 
  	z-index: 99; 
	bottom: 20px; 
	right: 20px; 
	display: none; 
	width: 52px;
	height: 52px;
	border: none; 
	border-radius: 50%; 
	outline: none; 
	background-color: #323137; 
	cursor: pointer; 
}

#myBtn:hover {
	background-color: #0f0f11;
}

#myBtn img {
	margin-bottom: 0.25rem;
	margin-left: 0.125rem;
	width: 18px;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: #161223;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #e3ce8b;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/	
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header .header-content {
		padding-top: 15rem;
		padding-bottom: 13rem;
	}
	/* end of header */


	/* Statistics */
	.counter .counter-cell {
		display: inline-block;
		margin-right: 1.5rem;
		margin-left: 1.5rem;
		vertical-align: top;
	}

	.counter .purecounter {
		font-size: 6rem;
		line-height: 4rem;
	}
	/* end of statistics */


	/* Contact */
	.form-1 .list-unstyled li {
		display: inline-block;
		margin-right: 1rem;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 1.75rem;
		background-color: transparent;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #161223;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}
	
	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
	/* end of navigation */


	/* Header */
	.header .header-content {
		padding-top: 18rem;
		padding-bottom: 16rem;
	}
	
	.header .h1-large {
		margin-bottom: 2.75rem;
		font-size: 5rem;
		line-height: 5.75rem;
	}
	/* end of header */


	/* Introduction */
	.cards-1 .card {
		display: inline-block;
		width: 290px;
		vertical-align: top;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1.75rem;
		margin-left: 1.75rem;
	}
	/* end of introduction */


	/* Details */
	.split {
		height: 786px;
	}
	
	.split .area-1 {
		height: 100%;
		width: 50%;
		display: inline-block;
	}
	
	.split .area-2 {
		height: 100%;
		width: 50%;
		display: inline-block;
		padding-bottom: 0;
		vertical-align: top;
	}

	.split .text-container {
		width: 400px;
		margin-left: 3rem;
	}
	/* end of details */


	/* Services 1 */
	.basic-1 .image-container {
		margin-bottom: 0;
	}
	/* end of services 1 */
	
	
	/* Services 2 */
	.basic-2 .image-container {
		margin-bottom: 0;
	}
	/* end of services 2 */
	
	
	/* Services 3 */
	.basic-3 .image-container {
		margin-bottom: 0;
	}
	/* end of services 3 */


	/* Projects */
	.filter .grid {
		max-width: 750px;
	}

	.filter .element-item {
		display: inline-block;
		width: 351px;
		margin-right: 0.625rem;
		margin-left: 0.625rem;
		vertical-align: top;
	}
	/* end of projects */


	/* Footer */
	.footer .footer-col {
		margin-bottom: 2rem;
	}

	.footer .footer-col.first {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.second {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.third {
		display: inline-block;
		width: 224px;
		text-align: right;
		vertical-align: top;
	}

	.footer .footer-col.third .fa-stack {
		margin-right: 0;
		margin-left: 0.375rem;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */
}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {
	
	/* General Styles */
	.container {
		max-width: 1140px;
	}
	/* end of general styles */
	

	/* Header */
	.header {
		height: 100vh;
	}
	
	.header .header-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100vh;
		padding-top: 0;
		padding-bottom: 0;
	}

	.header .btn-solid-lg {
		padding: 1.875rem 3rem;
		font-size: 1rem;
	}
	/* end of header */


	/* Introduction */
	.cards-1 .card {
		width: 330px;
	}

	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 3.625rem;
		margin-left: 3.625rem;
	}
	/* end of introduction */


	/* Details */
	.split {
		height: 708px;
	}

	.split .text-container {
		width: 450px;
		margin-left: 6rem;
	}
	/* end of details */


	/* Services 1 */
	.basic-1 .text-container {
		margin-top: 4rem;
		margin-left: 5rem;
	}
	/* end of services 1 */
	
	
	/* Services 2 */
	.basic-2 .text-container {
		margin-top: 4rem;
		margin-left: 5rem;
	}
	/* end of services 2 */
	
	
	/* Services 3 */
	.basic-3 .text-container {
		margin-top: 4rem;
		margin-left: 5rem;
	}
	/* end of services 3 */


	/* Projects */
	.filter .grid {
		max-width: 1120px;
	}
	/* end of projects */


	/* Testimonials */
	.slider-1 .slider-container {
		width: 82%;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of testimonials */


	/* Statistics */
	.counter .counter-cell {
		margin-right: 3.5rem;
		margin-left: 3.5rem;
	}
	
	.counter .counter-cell:first-of-type {
		margin-left: 0;
	}

	.counter .counter-cell:last-of-type {
		margin-right: 0;
	}
	/* end of statistics */


	/* Contact */
	.form-1 form {
		width: 776px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of contact */


	/* Footer */
	.footer .footer-col.first {
		width: 352px;
		margin-right: 6rem;
	}
	
	.footer .footer-col.second {
		margin-right: 6.5rem;
	}
	
	.footer .footer-col.third {
		text-align: right;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of extra pages */
}
/* end of min-width 1200px */

/* Services Section */
.services-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.services-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.services-section .card {
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-section .card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.services-section .card .card-body {
  padding: 30px;
  text-align: center;
}

.services-section .card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.services-section .card p {
  font-size: 16px;
  margin-bottom: 30px;
}

.services-section .card i {
  font-size: 48px;
  color: #5c5c5c;
  margin-bottom: 20px;
}

.services-section .card:hover i {
  color: #0d6efd;
}

.services-section .card:hover h3 {
  color: #0d6efd;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto;
}

.service-card {
  width: 18rem;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.service-card img {
  width: 100%;
  height: auto;
}

.service-card .card-body {
  padding: 1rem;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-card a {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.service-card a:hover {
  background-color: #0069d9;
}

/* ============================= */
/* Enterprise Contact Section    */
/* ============================= */
.enterprise-contact {
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
	padding: 90px 0 110px 0;
	font-family: "Open Sans", sans-serif; /* ✅ same as website */
}

.enterprise-contact__header {
	margin-bottom: 36px;
}

.enterprise-contact__title {
	margin: 0 0 14px 0;
	color: #0f172a;
	font-size: 38px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.6px;
	font-family: "Open Sans", sans-serif; /* ✅ remove Georgia */
}

.enterprise-contact__subtitle {
	margin: 0 auto;
	color: #64748b;
	font-size: 16.5px;
	line-height: 1.85;
	max-width: 760px;
	font-family: "Open Sans", sans-serif;
}

.enterprise-contact__card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 52px;
	box-shadow: 0 22px 50px rgba(2, 6, 23, 0.08);
	position: relative;
	overflow: hidden;
}

/* subtle premium top highlight */
.enterprise-contact__card:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, rgba(212,163,115,0.9), rgba(15,23,42,0.9));
	opacity: 0.75;
}

/* Section titles inside form */
.form-section-title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2.2px;
	color: #94a3b8;
	border-bottom: 1px solid #f1f5f9;
	padding-bottom: 12px;
	margin: 10px 0 26px 0;
	font-weight: 800;
	font-family: "Open Sans", sans-serif;
}

/* Labels */
.label-premium {
	font-size: 13px;
	font-weight: 700;
	color: #334155;
	margin-bottom: 8px;
	display: block;
	font-family: "Open Sans", sans-serif;
}

.req { color: #ef4444; }

/* Inputs */
.input-premium {
	width: 100%;
	padding: 14px 16px;
	background-color: #f8fafc;
	border: 1px solid #cbd5e1;
	border-radius: 10px;              /* ✅ modern premium, not sharp */
	color: #0f172a;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
	font-family: "Open Sans", sans-serif;
}

.input-premium::placeholder {
	color: #94a3b8;
	font-weight: 600;
}

.input-premium:focus {
	outline: none;
	background-color: #ffffff;
	border-color: rgba(15, 23, 42, 0.65);
	box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

/* Select arrow */
.select-arrow {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px;
	padding-right: 44px;
}

/* Checkbox line */
.enterprise-check .form-check-input {
	border-color: #cbd5e1;
	cursor: pointer;
	margin-top: 0.25rem;
}

.enterprise-check .form-check-input:focus {
	box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
	border-color: rgba(15, 23, 42, 0.65);
}

.enterprise-check .form-check-label {
	color: #64748b;
	font-size: 13px;
	line-height: 1.6;
	font-family: "Open Sans", sans-serif;
}

.enterprise-check a {
	color: #0f172a;
	text-decoration: underline;
	font-weight: 800;
}

/* Submit button */
.btn-premium-submit {
	background: #0f172a;
	color: #ffffff;
	border: 1px solid #0f172a;
	padding: 16px 40px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
	font-family: "Open Sans", sans-serif;
	width: 100%;
}

.btn-premium-submit:hover {
	background: #ffffff;
	color: #0f172a;
	transform: translateY(-1px);
}

@media (min-width: 768px) {
	.btn-premium-submit { width: auto; }
}

/* Footer line under form */
.enterprise-contact__footer p {
	margin: 18px 0 0 0;
	color: #94a3b8;
	font-size: 12px;
	letter-spacing: 0.5px;
	font-weight: 700;
	font-family: "Open Sans", sans-serif;
}

/* Responsive spacing */
@media (max-width: 991.98px) {
	.enterprise-contact__card {
		padding: 34px;
	}
	.enterprise-contact__title {
		font-size: 32px;
	}
}

@media (max-width: 575.98px) {
	.enterprise-contact {
		padding: 70px 0 90px 0;
	}
	.enterprise-contact__card {
		padding: 26px;
		border-radius: 12px;
	}
}

/* ============================= */
/* Enterprise CTA (Contact block) */
/* ============================= */
.enterprise-cta {
  padding: 95px 0 105px 0;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

/* Subtle premium top highlight */
.enterprise-cta:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 163, 115, 0.55),
    rgba(15, 23, 42, 0.25),
    rgba(212, 163, 115, 0.55)
  );
  opacity: 0.65;
}

.enterprise-cta__title {
  margin: 0 0 14px 0;
  color: #0f172a;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.6px;
  font-family: "Open Sans", sans-serif;
}

.enterprise-cta__subtitle {
  margin: 0 auto 34px auto;
  max-width: 640px;
  color: #64748b;
  font-size: 16.5px;
  line-height: 1.8;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.enterprise-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* Premium enterprise button */
.enterprise-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #0f172a;
  color: #ffffff;
  text-decoration: none;

  padding: 16px 44px;
  border-radius: 12px;
  border: 1px solid #0f172a;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  transition: all 0.25s ease;
}

.enterprise-cta__btn:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
}

/* Optional: focus state for accessibility */
.enterprise-cta__btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08), 0 14px 30px rgba(15, 23, 42, 0.18);
}

/* Responsive */
@media (max-width: 991.98px) {
  .enterprise-cta {
    padding: 80px 0 90px 0;
  }
  .enterprise-cta__title {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .enterprise-cta__title {
    font-size: 28px;
  }
  .enterprise-cta__btn {
    width: 100%;
    max-width: 360px;
    padding: 15px 24px;
  }
}

/* ============================= */
/* Introduction (Enterprise)     */
/* ============================= */
.intro-enterprise {
  padding: 95px 0 85px 0;
  background: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

/* subtle enterprise highlight line */
.intro-enterprise:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 163, 115, 0.55),
    rgba(15, 23, 42, 0.15),
    rgba(212, 163, 115, 0.55)
  );
  opacity: 0.55;
}

.intro-enterprise__title {
  margin: 0 0 14px 0;
  color: #0f172a;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.intro-enterprise__subtitle {
  margin: 0 auto 42px auto;
  max-width: 860px;
  color: #64748b;
  font-size: 16.5px;
  line-height: 1.85;
  font-weight: 600;
}

/* Grid for cards */
.intro-enterprise__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Card */
.intro-enterprise__card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  gap: 16px;
}

.intro-enterprise__card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 163, 115, 0.55);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
}

/* Icon badge */
.intro-enterprise__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(212, 163, 115, 0.14);
  border: 1px solid rgba(212, 163, 115, 0.35);
  flex: 0 0 auto;
}

.intro-enterprise__icon span {
  color: #0f172a;
  font-size: 18px;
}

/* Text */
.intro-enterprise__card-title {
  margin: 0 0 8px 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.intro-enterprise__card-text {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.intro-enterprise__note {
  margin: 30px auto 0 auto;
  max-width: 980px;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.9;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991.98px) {
  .intro-enterprise {
    padding: 80px 0 70px 0;
  }
  .intro-enterprise__title {
    font-size: 32px;
  }
  .intro-enterprise__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ============================= */
/* Details Split (Premium Enterprise About) */
/* KEEP premium design + FIX top alignment + FIX image path issues */
/* ============================= */

.split.split-enterprise{
  display: flex;
  align-items: stretch;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(212, 163, 115, 0.12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Override template split rules ONLY here */
.split.split-enterprise .area-1{
  height: auto !important;   /* ok */
  /* ❌ NU pune background: none !important; — asta îți omoară poza */
}

.split.split-enterprise .area-2{
  padding: 0 !important;     /* oprește template padding care împinge cardul */
}

.split.split-enterprise .area-1,
.split.split-enterprise .area-2{
  width: 50%;
  height: auto;
}

/* LEFT: image (BULLETPROOF) */
.split.split-enterprise .area-1.split-enterprise__media{
  position: relative;
  min-height: 560px;

  /* ✅ imaginea vine din variabila din HTML */
  background: var(--split-img) center center / cover no-repeat !important;
  background-color: #0f172a; /* fallback dacă lipsește imaginea */

  overflow: hidden;
}

.split.split-enterprise .area-1.split-enterprise__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.05)),
    radial-gradient(900px 520px at 20% 20%, rgba(212, 163, 115, 0.16), transparent 55%);
  pointer-events: none;
}

/* RIGHT: content – top aligned */
.split.split-enterprise .area-2.split-enterprise__content{
  display: flex;
  align-items: flex-start;   /* top aligned */
  justify-content: flex-start;
  min-height: 560px;
}

/* spacing control */
.split.split-enterprise .area-2.split-enterprise__content .container{
  padding-top: 28px;
  padding-bottom: 28px;
}

/* Card */
.split-enterprise__card{
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 34px 34px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  margin: 0;
}

.split-enterprise__card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d4a373, rgba(212, 163, 115, 0.25));
}

.split-enterprise__eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.6px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.65);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.split-enterprise__title{
  margin: 0 0 12px 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.split-enterprise__lead{
  margin: 0 0 22px 0;
  color: #64748b;
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 600;
  max-width: 820px;
}

/* Pillars */
.split-enterprise__pillars{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.pillar{
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(248, 250, 252, 0.8);
}

.pillar__tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #0f172a;
  margin-bottom: 6px;
  position: relative;
}

.pillar__tag::after{
  content: "";
  display: block;
  height: 2px;
  width: 38px;
  margin-top: 6px;
  background: rgba(212, 163, 115, 0.9);
  border-radius: 999px;
}

.pillar__text{
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 600;
}

/* CTA */
.split-enterprise__actions{
  margin-top: 22px;
}

.split-enterprise__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.split-enterprise__btn:hover{
  transform: translateY(-2px);
  background: #ffffff;
  color: #0f172a;
}

.split-enterprise__arrow{
  font-size: 16px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 991.98px){
  .split.split-enterprise{
    flex-direction: column;
  }

  .split.split-enterprise .area-1,
  .split.split-enterprise .area-2{
    width: 100%;
  }

  .split.split-enterprise .area-1.split-enterprise__media{
    min-height: 320px;
  }

  .split.split-enterprise .area-2.split-enterprise__content{
    min-height: auto;
  }

  .split.split-enterprise .area-2.split-enterprise__content .container{
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .split-enterprise__card{
    padding: 22px 18px;
    border-radius: 16px;
  }

  .split-enterprise__title{
    font-size: 28px;
  }
}



/* ============================== */
/* Services 1 (Premium Enterprise)  */
/* Add this in css/styles.css     */
/* ============================== */

.services-enterprise{
  background: radial-gradient(900px 420px at 18% 18%, rgba(212,163,115,0.10), transparent 55%),
              linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: "Open Sans", sans-serif;
}

.services-enterprise__block{
  padding: 80px 0;
}

.services-enterprise__block--alt{
  background: linear-gradient(180deg, rgba(248,250,252,0.90), rgba(255,255,255,0.95));
}

/* media frame */
.services-enterprise__media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 26px 80px rgba(15,23,42,0.10);
}

.services-enterprise__media img{
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.001); /* avoids 1px gaps in some browsers */
}

.services-enterprise__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.12), rgba(15,23,42,0.00)),
    radial-gradient(900px 520px at 20% 20%, rgba(212,163,115,0.12), transparent 55%);
  pointer-events:none;
}

/* content card */
.services-enterprise__card{
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 20px;
  padding: 32px 32px;
  box-shadow: 0 18px 60px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
}

.services-enterprise__card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background: linear-gradient(180deg, #d4a373, rgba(212,163,115,0.18));
}

.services-enterprise__eyebrow{
  display:inline-block;
  font-size: 12px;
  letter-spacing: 2.8px;
  font-weight: 900;
  color: rgba(15,23,42,0.62);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-enterprise__title{
  margin: 0 0 12px 0;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.services-enterprise__lead{
  margin: 0;
  color: #64748b;
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 600;
}

/* CTA link */
.services-enterprise__actions{
  margin-top: 18px;
}

.services-enterprise__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(15,23,42,0.16);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.services-enterprise__link:hover{
  transform: translateY(-2px);
  background: #ffffff;
  color: #0f172a;
}

.services-enterprise__arrow{
  font-size: 16px;
  line-height: 1;
}

/* responsive */
@media (max-width: 991.98px){
  .services-enterprise__block{
    padding: 54px 0;
  }
  .services-enterprise__card{
    padding: 22px 18px;
    border-radius: 18px;
  }
  .services-enterprise__title{
    font-size: 26px;
  }
}

/* ===================================== */
/* SERVICES 2 / PROJECTS (Premium Corporate) */
/* ===================================== */

.services-premium{
  padding-top: 5rem;
  padding-bottom: 5.25rem;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(212, 163, 115, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(255,255,255,0));
}

.services-premium__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
  margin-bottom: 10px;
}

.services-premium__eyebrow::before{
  content:"";
  width: 28px;
  height: 2px;
  background: rgba(212, 163, 115, 0.90);
  border-radius: 999px;
}

.services-premium__title{
  margin-bottom: 10px;
  letter-spacing: -0.6px;
}

.services-premium__subtitle{
  max-width: 820px;
  margin: 0 auto 1.75rem;
  color: rgba(2, 6, 23, 0.70);
  font-weight: 600;
  line-height: 1.85;
}

/* Filters */
.services-premium__filters{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 1.5rem 0 2rem;
}

.services-premium__filters .button{
  border-radius: 999px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(15, 23, 42, 0.86);
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.services-premium__filters .button:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.10);
  border-color: rgba(212, 163, 115, 0.40);
}

.services-premium__filters .button.is-checked{
  background: rgba(15, 23, 42, 0.92);
  color: rgba(255,255,255,0.95);
  border-color: rgba(15, 23, 42, 0.92);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.16);
}

/* Grid spacing */
.services-premium__grid{
  margin-top: 0.75rem;
}

/* Cards (Isotope items) */
.services-premium__item{
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 52px rgba(2, 6, 23, 0.08);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.services-premium__item:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 76px rgba(2, 6, 23, 0.14);
  border-color: rgba(212, 163, 115, 0.35);
}

.services-premium__media{
  position: relative;
  aspect-ratio: 3 / 2;
  background: #0f172a;
}

.services-premium__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

/* Subtle overlay to look premium */
.services-premium__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(2,6,23,0.05), rgba(2,6,23,0.22));
  pointer-events:none;
}

.services-premium__meta{
  padding: 14px 14px 16px;
}

.services-premium__name{
  margin: 0;
  color: rgba(15, 23, 42, 0.92);
  font-weight: 900;
  line-height: 1.25;
}

.services-premium__cta{
  display: inline-flex;
  margin-top: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.65);
}

/* Make isotope items breathe (if your original CSS is tight) */
.grid .element-item{
  padding: 10px;
}

/* Responsive */
@media (max-width: 991.98px){
  .services-premium{
    padding-top: 4rem;
    padding-bottom: 4.25rem;
  }

  .services-premium__filters{
    justify-content: flex-start;
  }

  .services-premium__subtitle{
    text-align: left;
    padding: 0 0.25rem;
  }

  .grid .element-item{
    padding: 8px;
  }
}

/* ============================= */
/* HERO (Corporate Premium)      */
/* ============================= */

/* Make video behave like a true background */
.header #video-background {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
}

/* Upgrade overlay: deeper, more corporate, better legibility */
.header .header-content {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  /* stronger overlay than the current single gradient */
  background:
    radial-gradient(1200px 600px at 50% 35%, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.72) 60%, rgba(15, 23, 42, 0.82) 100%),
    linear-gradient(rgba(21, 35, 63, 0.35), rgba(21, 35, 63, 0.55));
}

/* Optional subtle “glass” shell so text feels premium */
.hero-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 18px;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-shell { padding: 26px 22px; }
}

/* Subtitle under H1 */
.hero-subtitle {
  margin: 0 auto;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 600;
}

@media (min-width: 992px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

/* CTA spacing */
.hero-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.hero-cta {
  min-width: 220px;
}

/* Trust line (no contact details, no spam risk) */
.hero-trust {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-trust__item {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.hero-trust__dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(227, 206, 139, 0.95);
}

/* Tweak H1 spacing so it looks like one “lockup” */
.header .h1-large {
  margin-bottom: 12px; /* overrides your 2.25rem for tighter corporate look */
}

@media (min-width: 992px) {
  .header .h1-large {
    margin-bottom: 16px;
  }
}
/* ============================= */
/* HERO (Corporate + Video BG)   */
/* ============================= */

.header{
  position: relative;
  overflow: hidden;
}

/* video as true background */
.header #video-background{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2; /* behind everything */
}

/* corporate overlay on top of video */
.header::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 50% 35%, rgba(15, 23, 42, 0.30) 0%, rgba(15, 23, 42, 0.72) 60%, rgba(15, 23, 42, 0.82) 100%),
    linear-gradient(rgba(21, 35, 63, 0.25), rgba(21, 35, 63, 0.55));
}

/* content centered nicely under fixed navbar */
.header .header-content{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  /* space for fixed navbar */
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;

  text-align: center;
  background: transparent; /* overlay is handled by ::before */
}

/* hero container */
.hero-shell{
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 14px;
}

/* tighten title spacing */
.header .h1-large{
  margin-bottom: 14px;
  color: #ffffff;
}

/* subtitle */
.hero-subtitle{
  margin: 10px auto 0 auto;
  max-width: 860px;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 600;
}

/* actions */
.hero-actions{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.hero-cta{
  min-width: 220px;
}

/* trust line */
.hero-trust{
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-trust__item{
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.hero-trust__dot{
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(227, 206, 139, 0.95);
}

/* responsive */
@media (min-width: 992px){
  .header .header-content{
    padding-top: 10.5rem; /* more premium spacing on desktop */
    padding-bottom: 6rem;
  }
  .hero-subtitle{
    font-size: 1.125rem;
  }
}
/* ============================= */
/* NAVBAR (Corporate Premium)    */
/* ============================= */

.navbar-corporate {
  padding: 0.95rem 0;
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, padding 220ms ease;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  z-index: 9999;
}

.navbar-corporate .logo-image img {
  height: 34px;
  width: auto;
  transition: transform 220ms ease, filter 220ms ease;
}

.navbar-corporate .navbar-nav .nav-link {
  color: rgba(255,255,255,0.90);
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.6rem 0.95rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.navbar-corporate .navbar-nav .nav-link:hover {
  color: rgba(255,255,255,0.98);
}

/* underline hover (corporate subtle) */
.navbar-corporate .navbar-nav .nav-link:not(.nav-cta) {
  position: relative;
}

.navbar-corporate .navbar-nav .nav-link:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 2px;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 160ms ease, transform 160ms ease;
  background: rgba(227, 206, 139, 0.95);
  border-radius: 999px;
}

.navbar-corporate .navbar-nav .nav-link:not(.nav-cta):hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Contact as CTA button in navbar */
.navbar-corporate .nav-cta {
  margin-left: 0.35rem;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  background: rgba(227, 206, 139, 0.92);
  color: rgba(2, 6, 23, 0.92) !important;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.navbar-corporate .nav-cta:hover {
  background: rgba(227, 206, 139, 1);
  color: rgba(2, 6, 23, 1) !important;
}

/* Dropdown styling (more corporate) */
.navbar-corporate .dropdown-menu {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 0.65rem;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.18);
}

.navbar-corporate .dropdown-item {
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  font-weight: 650;
}

.navbar-corporate .dropdown-item:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Social icons (make them less “gaming”, more corporate) */
.navbar-corporate .social-icons .fa-stack .fa-circle {
  opacity: 0.18;
}
.navbar-corporate .social-icons .fa-stack .fa-stack-1x {
  opacity: 0.95;
}

/* Toggler visibility on transparent background */
.navbar-corporate .navbar-toggler {
  filter: brightness(1.15);
}

/* Scrolled state: glass/white */
.navbar-corporate.nav-scrolled {
  padding: 0.75rem 0;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 44px rgba(2, 6, 23, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-corporate.nav-scrolled .navbar-nav .nav-link {
  color: rgba(2, 6, 23, 0.86);
}

.navbar-corporate.nav-scrolled .navbar-nav .nav-link:hover {
  color: rgba(2, 6, 23, 1);
}

.navbar-corporate.nav-scrolled .navbar-nav .nav-link:not(.nav-cta)::after {
  background: rgba(2, 6, 23, 0.85);
  opacity: 0.10;
}

.navbar-corporate.nav-scrolled .navbar-nav .nav-link:not(.nav-cta):hover::after {
  opacity: 0.22;
}

.navbar-corporate.nav-scrolled .nav-cta {
  background: rgba(227, 206, 139, 0.95);
  color: rgba(2, 6, 23, 0.92) !important;
}

/* Mobile offcanvas background (so links are readable) */
@media (max-width: 991px) {
  .navbar-corporate .offcanvas-collapse {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
  }

  .navbar-corporate .offcanvas-collapse .nav-link {
    color: rgba(2, 6, 23, 0.86);
  }

  .navbar-corporate .offcanvas-collapse .nav-link:hover {
    color: rgba(2, 6, 23, 1);
  }
}
/* ===================================== */
/* MOBILE NAV (Offcanvas - Perfect)      */
/* ===================================== */

/* ensure toggler icon is always visible */
.navbar-corporate .navbar-toggler-icon {
  background-image: var(--bs-navbar-toggler-icon-bg);
}

/* OFFCANVAS PANEL (template-style) */
@media (max-width: 991px) {

  /* make sure navbar sits above hero video */
  .navbar-corporate { z-index: 10000; }

  /* offcanvas container */
  .navbar-corporate .offcanvas-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100vh;

    padding: 6.25rem 1.25rem 1.25rem 1.25rem; /* room for navbar area */
    overflow-y: auto;

    visibility: hidden;
    transform: translateX(102%);
    transition: transform 240ms ease, visibility 240ms ease;

    border-left: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -22px 0 60px rgba(2, 6, 23, 0.18);
  }

  /* open state */
  .navbar-corporate .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(0);
  }

  /* links in mobile panel */
  .navbar-corporate .offcanvas-collapse .navbar-nav {
    margin-top: 0.25rem;
  }

  .navbar-corporate .offcanvas-collapse .nav-link {
    color: rgba(2, 6, 23, 0.90) !important;
    font-weight: 800;
    padding: 0.85rem 0.75rem;
    border-radius: 14px;
  }

  .navbar-corporate .offcanvas-collapse .nav-link:hover {
    background: rgba(15, 23, 42, 0.06);
    color: rgba(2, 6, 23, 1) !important;
  }

  /* dropdown inside offcanvas */
  .navbar-corporate .offcanvas-collapse .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0.35rem;
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.55rem;
  }

  .navbar-corporate .offcanvas-collapse .dropdown-item {
    font-weight: 750;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
  }

  /* CTA in mobile panel */
  .navbar-corporate .offcanvas-collapse .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(227, 206, 139, 0.95);
    color: rgba(2, 6, 23, 0.95) !important;
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.14);
  }

  /* social icons spacing in mobile panel */
  .navbar-corporate .offcanvas-collapse .social-icons {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
  }
}

/* Dim background behind offcanvas (overlay) */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 9998;
}

.mobile-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}
/* ============================= */
/* MOBILE MENU FIX (OFFCANVAS)   */
/* ============================= */

/* overlay behind the menu */
.mobile-nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 9997;
}
.mobile-nav-overlay.show{
  opacity: 1;
  pointer-events: auto;
}

/* ensure offcanvas sits ABOVE hero/video */
@media (max-width: 991.98px){
  .offcanvas-collapse{
    z-index: 9998;
  }
}

/* Premium toggler style – without breaking Bootstrap visibility rules */
.navbar-corporate .navbar-toggler{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.25);
  /* IMPORTANT: nu setăm display aici, ca să nu stricăm navbar-expand-lg */
}

/* doar pe mobil îl centrăm perfect */
@media (max-width: 991.98px){
  .navbar-corporate .navbar-toggler{
    display: grid;
    place-items: center;
  }
}

/* on scrolled (white) navbar, keep toggler readable */
.navbar-corporate.nav-scrolled .navbar-toggler{
  background: rgba(2, 6, 23, 0.06);
  border: 1px solid rgba(2, 6, 23, 0.12);
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.10);
}
.navbar-corporate.nav-scrolled .navbar-toggler-icon{
  filter: invert(1) grayscale(1) brightness(0.2);
}

/* optional: give the mobile menu a clean corporate layout */
@media (max-width: 991.98px){
  .navbar-corporate .offcanvas-collapse{
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
  }

  .navbar-corporate .offcanvas-collapse .navbar-nav{
    margin-top: 0.75rem;
  }

  .navbar-corporate .offcanvas-collapse .nav-link{
    padding: 0.85rem 0.85rem;
    border-radius: 12px;
  }

  .navbar-corporate .offcanvas-collapse .nav-link:hover{
    background: rgba(2, 6, 23, 0.06);
  }

  .navbar-corporate .offcanvas-collapse .dropdown-menu{
    border-radius: 14px;
    padding: 0.5rem;
  }
}
/* ============================= */
/* INTRO (Enterprise) - Corporate */
/* ============================= */

.intro-enterprise{
  padding: 5.5rem 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(255,255,255,0));
}

.intro-enterprise__title{
  letter-spacing: -0.6px;
  font-weight: 800;
}

.intro-enterprise__subtitle{
  max-width: 860px;
  margin: 0.9rem auto 0;
  color: rgba(2, 6, 23, 0.74);
  font-weight: 600;
  line-height: 1.85;
}

.intro-enterprise__grid{
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 991px){
  .intro-enterprise__grid{ grid-template-columns: 1fr; }
}

.intro-enterprise__card{
  border-radius: 18px;
  padding: 1.4rem 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intro-enterprise__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.10);
  border-color: rgba(15, 23, 42, 0.14);
}

.intro-enterprise__icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(227, 206, 139, 0.18);
  border: 1px solid rgba(227, 206, 139, 0.35);
  margin-bottom: 0.95rem;
}

.intro-enterprise__icon span{
  font-size: 18px;
  color: rgba(2, 6, 23, 0.90);
}

.intro-enterprise__card-title{
  margin-bottom: 0.55rem;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.intro-enterprise__card-text{
  margin: 0;
  color: rgba(2, 6, 23, 0.74);
  line-height: 1.8;
  font-weight: 600;
}

.intro-enterprise__note{
  margin-top: 1.75rem;
  color: rgba(2, 6, 23, 0.70);
  font-weight: 650;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================== */
/* FOOTER (Premium Corporate)            */
/* ===================================== */

.footer-enterprise{
  position: relative;
  background: radial-gradient(900px 420px at 18% 10%, rgba(212,163,115,0.12), transparent 55%),
              linear-gradient(180deg, #0b1222 0%, #0f172a 60%, #0b1222 100%);
  color: rgba(148,163,184,0.95);
  padding: 80px 0 26px;
  font-family: "Segoe UI", "Open Sans", system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* subtle top glow line */
.footer-enterprise::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(212,163,115,0.55), transparent);
  opacity: 0.65;
}

/* spacing */
.footer-enterprise__top{
  padding-bottom: 10px;
}

/* brand */
.footer-enterprise__brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 22px;
}

.footer-enterprise__logo{
  max-width: 190px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.35));
}

/* description */
.footer-enterprise__text{
  margin: 0;
  max-width: 420px;
  color: rgba(203,213,225,0.90);
  line-height: 1.85;
  font-size: 14px;
  font-weight: 500;
}

/* titles */
.footer-enterprise__title{
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

/* lists */
.footer-enterprise__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-enterprise__link{
  color: rgba(148,163,184,0.95);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease, transform 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-enterprise__link::before{
  content:"";
  width: 0;
  height: 2px;
  background: rgba(212,163,115,0.95);
  border-radius: 999px;
  transition: width 160ms ease;
}

.footer-enterprise__link:hover{
  color: rgba(255,255,255,0.95);
  transform: translateX(2px);
}

.footer-enterprise__link:hover::before{
  width: 18px;
}

/* social */
.footer-enterprise__social{
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.footer-enterprise__social-link{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.footer-enterprise__social-link i{
  color: rgba(255,255,255,0.92);
  font-size: 18px;
}

.footer-enterprise__social-link:hover{
  transform: translateY(-2px);
  background: rgba(212,163,115,0.14);
  border-color: rgba(212,163,115,0.40);
}

/* divider */
.footer-enterprise__divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 18px 0 18px;
}

/* bottom */
.footer-enterprise__bottom{
  padding-top: 6px;
}

.footer-enterprise__fineprint{
  margin: 0;
  font-size: 13px;
  color: rgba(100,116,139,0.95);
  font-weight: 600;
}

.footer-enterprise__powered{
  color: rgba(100,116,139,0.95);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-enterprise__powered:hover{
  color: rgba(255,255,255,0.92);
}

/* ===================================== */
/* Back to top (Premium)                 */
/* ===================================== */

.back-to-top{
  display: none;
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 99;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(212,163,115,0.35);
  background: rgba(212,163,115,0.92);
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 18px 56px rgba(2,6,23,0.30);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.back-to-top:hover{
  transform: translateY(-2px);
  background: rgba(15,23,42,0.92);
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.18);
}

.back-to-top i{
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991.98px){
  .footer-enterprise{
    padding: 64px 0 22px;
  }

  .footer-enterprise__text{
    padding-right: 0;
  }
}

/* ===================================== */
/* CONTACT CTA (Premium Corporate)       */
/* ===================================== */

.enterprise-cta{
  padding: 5.25rem 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(212,163,115,0.12), transparent 55%),
    linear-gradient(180deg, rgba(15,23,42,0.04), rgba(255,255,255,0));
}

.enterprise-cta__card{
  position: relative;
  border-radius: 22px;
  padding: 3rem 2.5rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.10);
  overflow: hidden;
}

.enterprise-cta__card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 520px at 15% 20%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,0.06), transparent 55%);
  pointer-events:none;
}

.enterprise-cta__card::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 4px;
  background: linear-gradient(180deg, rgba(212,163,115,0.95), rgba(212,163,115,0.18));
  opacity: 0.95;
  pointer-events:none;
}

.enterprise-cta__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.enterprise-cta__eyebrow::before{
  content:"";
  width: 28px;
  height: 2px;
  background: rgba(212,163,115,0.95);
  border-radius: 999px;
}

.enterprise-cta__title{
  margin: 0 0 14px 0;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: rgba(15,23,42,0.94);
  line-height: 1.12;
  position: relative;
  z-index: 1;
}

.enterprise-cta__subtitle{
  margin: 0 auto;
  max-width: 880px;
  color: rgba(2,6,23,0.72);
  font-weight: 650;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.enterprise-cta__actions{
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.enterprise-cta__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.92);
  color: rgba(255,255,255,0.95);
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 18px 56px rgba(2, 6, 23, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.enterprise-cta__btn:hover{
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 1);
  box-shadow: 0 24px 72px rgba(2, 6, 23, 0.22);
}

.enterprise-cta__arrow{
  font-size: 16px;
  line-height: 1;
}

.enterprise-cta__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.70);
  padding: 0.9rem 0.5rem;
  transition: color 160ms ease, transform 160ms ease;
}

.enterprise-cta__link:hover{
  color: rgba(15, 23, 42, 0.92);
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 991.98px){
  .enterprise-cta{
    padding: 4.25rem 0;
  }

  .enterprise-cta__card{
    padding: 2.25rem 1.25rem;
    border-radius: 18px;
  }
}

/* ===================================== */
/* HOW WE WORK (Premium Corporate)       */
/* No card overload: one panel + timeline */
/* ===================================== */

.howwork{
  padding: 5.25rem 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(212, 163, 115, 0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: "Open Sans", sans-serif;
}

.howwork__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
  margin-bottom: 12px;
}

.howwork__kicker::before{
  content:"";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: rgba(212, 163, 115, 0.95);
}

.howwork__title{
  margin: 0 0 14px 0;
  color: rgba(15, 23, 42, 0.94);
  font-weight: 900;
  letter-spacing: -0.7px;
  line-height: 1.12;
}

.howwork__lead{
  margin: 0 0 22px 0;
  color: rgba(2, 6, 23, 0.72);
  font-weight: 650;
  line-height: 1.9;
  max-width: 46ch;
}

/* principles row (compact, not “cards”) */
.howwork__principles{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.howwork__principle{
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.06);
}

.howwork__label{
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.60);
  margin-bottom: 6px;
}

.howwork__value{
  font-weight: 800;
  color: rgba(15, 23, 42, 0.92);
  line-height: 1.25;
  font-size: 13.5px;
}

/* One premium panel on right */
.howwork__panel{
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.10);
  overflow: hidden;
  position: relative;
}

.howwork__panel::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 4px;
  background: linear-gradient(180deg, rgba(212, 163, 115, 0.95), rgba(212, 163, 115, 0.15));
}

/* timeline list */
.howwork__steps{
  list-style: none;
  margin: 0;
  padding: 28px 28px 8px 28px;
}

.howwork__step{
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.howwork__step--last{
  border-bottom: none;
  padding-bottom: 10px;
}

.howwork__badge{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.90);
  background: rgba(212, 163, 115, 0.16);
  border: 1px solid rgba(212, 163, 115, 0.28);
}

.howwork__stepTitle{
  margin: 0 0 6px 0;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
  letter-spacing: -0.2px;
  line-height: 1.2;
  font-size: 18px;
}

.howwork__stepText{
  margin: 0 0 10px 0;
  color: rgba(2, 6, 23, 0.70);
  font-weight: 600;
  line-height: 1.75;
}

.howwork__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.howwork__tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(248, 250, 252, 0.85);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* One CTA bar */
.howwork__cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(15, 23, 42, 0.95);
  color: rgba(255,255,255,0.92);
}

.howwork__ctaText{
  font-weight: 750;
  line-height: 1.3;
}

.howwork__ctaBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.howwork__ctaBtn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

/* responsive */
@media (max-width: 991.98px){
  .howwork{ padding: 4.25rem 0; }

  .howwork__principles{
    grid-template-columns: 1fr;
  }

  .howwork__steps{
    padding: 22px 18px 8px 18px;
  }

  .howwork__step{
    grid-template-columns: 52px 1fr;
  }

  .howwork__cta{
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ===================================== */
/* ENGAGEMENT MODELS (Executive Web-like) */
/* ===================================== */

.eng2{
  padding: 5.5rem 0;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: "Open Sans", sans-serif;
}

.eng2__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:2.6px;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(15,23,42,0.65);
  margin-bottom: 12px;
}
.eng2__kicker::before{
  content:"";
  width:30px;height:2px;
  background: rgba(212,163,115,0.95);
  border-radius:999px;
}

.eng2__title{
  margin:0 0 12px 0;
  color: rgba(15,23,42,0.94);
  font-weight:900;
  letter-spacing:-0.7px;
  line-height:1.12;
}

.eng2__subtitle{
  margin:0;
  max-width: 820px;
  color: rgba(2,6,23,0.72);
  font-weight:650;
  line-height:1.9;
}

.eng2__actions{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.eng2__btnPrimary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(15,23,42,0.94);
  border: 1px solid rgba(15,23,42,0.94);
  color: rgba(255,255,255,0.95);
  box-shadow: 0 14px 40px rgba(2,6,23,0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.eng2__btnPrimary:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(2,6,23,0.18);
  background: rgba(15,23,42,1);
}

.eng2__btnGhost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.12);
  color: rgba(15,23,42,0.85);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.eng2__btnGhost:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(2,6,23,0.10);
}

/* Glance box: clean, minimal */
.eng2__glance{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 60px rgba(2,6,23,0.08);
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
}
.eng2__glance::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background: linear-gradient(180deg, rgba(212,163,115,0.95), rgba(212,163,115,0.20));
}
.eng2__glanceTitle{
  font-weight: 950;
  color: rgba(15,23,42,0.92);
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.eng2__glanceRow{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(15,23,42,0.08);
}
.eng2__glanceRow:first-of-type{
  border-top: none;
}
.eng2__label{
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(15,23,42,0.55);
}
.eng2__value{
  color: rgba(15,23,42,0.84);
  font-weight: 800;
  font-size: 13px;
  text-align: right;
}

/* Models: website-like blocks */
.eng2__model{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 22px 70px rgba(2,6,23,0.09);
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
}

.eng2__model--alt{
  background:
    radial-gradient(700px 320px at 20% 20%, rgba(212,163,115,0.10), transparent 55%),
    rgba(255,255,255,0.94);
}

.eng2__modelTop{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.eng2__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,163,115,0.28);
  background: rgba(212,163,115,0.14);
  color: rgba(15,23,42,0.88);
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 11px;
}

.eng2__modelIcon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(248,250,252,0.9);
  color: rgba(15,23,42,0.85);
}

.eng2__modelTitle{
  margin: 6px 0 8px 0;
  font-weight: 950;
  letter-spacing: -0.3px;
  color: rgba(15,23,42,0.92);
}

.eng2__modelText{
  margin: 0 0 14px 0;
  color: rgba(2,6,23,0.72);
  font-weight: 650;
  line-height: 1.85;
  font-size: 14px;
}

/* Specs as a clean list (no card grid) */
.eng2__spec{
  border-top: 1px solid rgba(15,23,42,0.08);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}
.eng2__specItem{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}
.eng2__specK{
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(15,23,42,0.55);
  white-space: nowrap;
}
.eng2__specV{
  color: rgba(15,23,42,0.84);
  font-weight: 750;
  font-size: 13px;
  text-align: right;
}

/* Add-on strip */
.eng2__addon{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(15,23,42,0.95);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 22px 70px rgba(2,6,23,0.14);
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.eng2__addonTitle{
  font-weight: 950;
  letter-spacing: -0.2px;
}
.eng2__addonText{
  margin-top: 4px;
  color: rgba(255,255,255,0.78);
  font-weight: 650;
  line-height: 1.65;
  font-size: 13.5px;
}

.eng2__addonBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.08);
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}
.eng2__addonBtn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

/* Responsive */
@media (max-width: 991.98px){
  .eng2{ padding: 4.5rem 0; }
  .eng2__glance{ padding: 16px 16px; }
  .eng2__specItem{ flex-direction: column; align-items: flex-start; }
  .eng2__specV{ text-align: left; }
  .eng2__addon{ flex-direction: column; align-items: flex-start; }
  .eng2__addonBtn{ width: 100%; justify-content: center; }
}


/* ===================================== */
/* FOCUS AREAS (Executive / Premium)     */
/* ===================================== */

.focusx{
  padding: 5.25rem 0;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(212,163,115,0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  font-family: "Open Sans", sans-serif;
}

.focusx__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:2.6px;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(15,23,42,0.62);
  margin-bottom: 12px;
}
.focusx__kicker::before{
  content:"";
  width:30px;height:2px;
  background: rgba(212,163,115,0.95);
  border-radius:999px;
}

.focusx__title{
  margin:0 0 12px 0;
  color: rgba(15,23,42,0.94);
  font-weight:900;
  letter-spacing:-0.7px;
  line-height:1.12;
}

.focusx__lead{
  margin:0;
  color: rgba(2,6,23,0.72);
  font-weight:650;
  line-height:1.9;
  max-width: 44ch;
}

/* Executive brief blocks (not cards) */
.focusx__brief{
  margin-top: 18px;
  border-top: 1px solid rgba(15,23,42,0.10);
  padding-top: 16px;
}

.focusx__briefRow{
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.focusx__briefLabel{
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(15,23,42,0.55);
  margin-bottom: 6px;
}

.focusx__briefValue{
  color: rgba(15,23,42,0.86);
  font-weight: 750;
  line-height: 1.7;
  font-size: 14px;
}

.focusx__actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.focusx__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(15,23,42,0.94);
  border: 1px solid rgba(15,23,42,0.94);
  color: rgba(255,255,255,0.95);
  box-shadow: 0 14px 40px rgba(2,6,23,0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.focusx__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(2,6,23,0.18);
  background: rgba(15,23,42,1);
}

.focusx__link{
  text-decoration:none;
  font-weight: 900;
  color: rgba(15,23,42,0.70);
  border-bottom: 1px solid rgba(15,23,42,0.20);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}
.focusx__link:hover{
  color: rgba(15,23,42,0.92);
  border-color: rgba(212,163,115,0.60);
}

/* Right panel: clean corporate frame, minimal shadow */
.focusx__panel{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 60px rgba(2,6,23,0.08);
  overflow: hidden;
  position: relative;
}

.focusx__panel::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background: linear-gradient(180deg, rgba(212,163,115,0.95), rgba(212,163,115,0.20));
}

.focusx__panelHead{
  padding: 22px 22px 10px 26px;
}

.focusx__panelTitle{
  margin:0;
  font-weight: 950;
  letter-spacing: -0.3px;
  color: rgba(15,23,42,0.92);
}

.focusx__panelSub{
  margin: 8px 0 0 0;
  color: rgba(2,6,23,0.66);
  font-weight: 650;
  line-height: 1.75;
  font-size: 14px;
}

/* Executive rows list */
.focusx__list{
  padding: 6px 22px 18px 26px;
}

.focusx__item{
  display:flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(15,23,42,0.08);
}

.focusx__item--last{
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.focusx__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(212,163,115,0.95);
  margin-top: 6px;
  flex: 0 0 9px;
}

.focusx__itemTitle{
  font-weight: 900;
  color: rgba(15,23,42,0.90);
  line-height: 1.35;
}

.focusx__itemText{
  margin-top: 4px;
  color: rgba(2,6,23,0.68);
  font-weight: 650;
  line-height: 1.65;
  font-size: 13.5px;
}

.focusx__note{
  padding: 14px 22px 18px 26px;
  color: rgba(2,6,23,0.55);
  font-weight: 650;
  line-height: 1.6;
  font-size: 12.5px;
  background: linear-gradient(180deg, rgba(248,250,252,0.65), rgba(255,255,255,0.0));
}

/* Responsive */
@media (max-width: 991.98px){
  .focusx{ padding: 4.5rem 0; }
  .focusx__lead{ max-width: none; }
  .focusx__panelHead,
  .focusx__list,
  .focusx__note{
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* ============================= */
/* ABOUT HERO (Premium Corporate) */
/* ============================= */

.about-hero{
  position: relative;
  padding: 120px 0 72px;
  overflow: hidden;
  background: #0b1220;
}

.about-hero__bg{
  position: absolute;
  inset: 0;
  /* Folosește aceeași imagine ca homepage (sau schimbă cu una dedicată About) */
  background: url("../images/header-background.jpg") center / cover no-repeat;
  transform: scale(1.02);
  filter: saturate(0.95) contrast(1.05);
}

.about-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(212,163,115,0.16), transparent 55%),
    linear-gradient(180deg, rgba(2,6,23,0.55), rgba(2,6,23,0.90));
}

.about-hero__content{
  position: relative;
  z-index: 2;
}

.about-hero__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
}

.about-hero__kicker::before{
  content:"";
  width: 28px;
  height: 2px;
  background: rgba(212,163,115,0.95);
  border-radius: 999px;
}

.about-hero__title{
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin: 0 0 12px 0;
  font-size: clamp(34px, 4.2vw, 56px);
}

.about-hero__lead{
  margin: 0 auto;
  max-width: 960px;
  color: rgba(226,232,240,0.86);
  font-weight: 650;
  line-height: 1.9;
}

@media (max-width: 991.98px){
  .about-hero{ padding: 108px 0 62px; }
}
/* ============================= */
/* ABOUT INTRO (Premium)         */
/* Bigger hero image + executive */
/* ============================= */

.about-intro{
  padding: 82px 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Wider than default container but still “corporate” */
.about-intro__container{
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* Media frame – make it tall and premium */
.about-intro__media{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 28px 90px rgba(15,23,42,0.12);
  background: #0f172a;

  /* The key: make it feel like a hero */
  min-height: 560px;
}

/* True “cover” behavior */
.about-intro__img{
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.about-intro__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.28), rgba(15,23,42,0.00)),
    radial-gradient(900px 520px at 18% 18%, rgba(212,163,115,0.14), transparent 55%);
  pointer-events:none;
}

/* Card */
.about-intro__card{
  height: 100%;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 20px;
  padding: 34px 34px;
  box-shadow: 0 18px 60px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro__card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background: linear-gradient(180deg, #d4a373, rgba(212,163,115,0.20));
}

.about-intro__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 12px;
  letter-spacing: 2.8px;
  font-weight: 900;
  color: rgba(15,23,42,0.62);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-intro__kicker::before{
  content:"";
  width: 28px;
  height: 2px;
  background: rgba(212,163,115,0.95);
  border-radius: 999px;
}

.about-intro__title{
  margin: 0 0 12px 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.about-intro__lead{
  margin: 0 0 18px 0;
  color: #64748b;
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 600;
}

/* Points list – executive, not card overload */
.about-intro__points{
  border-top: 1px solid rgba(15,23,42,0.08);
  margin-top: 10px;
  padding-top: 16px;
  display: grid;
  gap: 14px;
}

.about-intro__point{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: start;
}

.about-intro__label{
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(15,23,42,0.62);
}

.about-intro__value{
  font-weight: 650;
  color: rgba(2,6,23,0.72);
  line-height: 1.65;
}

/* Actions */
.about-intro__actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.about-intro__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(15,23,42,0.16);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-intro__btn:hover{
  transform: translateY(-2px);
  background: #ffffff;
  color: #0f172a;
}

.about-intro__link{
  text-decoration: none;
  font-weight: 800;
  color: rgba(15,23,42,0.72);
  border-bottom: 1px solid rgba(15,23,42,0.18);
  padding-bottom: 2px;
}

.about-intro__link:hover{
  color: rgba(15,23,42,0.92);
  border-bottom-color: rgba(212,163,115,0.55);
}

/* Responsive */
@media (max-width: 991.98px){
  .about-intro{ padding: 58px 0; }
  .about-intro__media{ min-height: 340px; border-radius: 18px; }
  .about-intro__img{ min-height: 340px; }
  .about-intro__card{ padding: 22px 18px; border-radius: 18px; }
  .about-intro__title{ font-size: 28px; }
  .about-intro__point{ grid-template-columns: 1fr; gap: 6px; }
}

/* ============================= */
/* ABOUT – WHAT TO EXPECT (Exec) */
/* ============================= */

.about-expect{
  padding: 78px 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(180deg, rgba(248,250,252,0.95), #ffffff);
}

.about-expect__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15,23,42,0.62);
  margin-bottom: 12px;
}

.about-expect__kicker::before{
  content:"";
  width: 28px;
  height: 2px;
  background: rgba(212,163,115,0.95);
  border-radius: 999px;
}

.about-expect__title{
  margin: 0 0 12px 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.about-expect__lead{
  margin: 0 0 14px 0;
  color: #64748b;
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 600;
}

.about-expect__note{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.75);
  color: rgba(2,6,23,0.70);
  font-weight: 650;
  line-height: 1.7;
}

/* right panel */
.about-expect__panel{
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 20px;
  padding: 30px 30px;
  box-shadow: 0 18px 60px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
}

.about-expect__panel::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background: linear-gradient(180deg, #d4a373, rgba(212,163,115,0.20));
}

.about-expect__row{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
}

.about-expect__index{
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(15,23,42,0.55);
  font-size: 14px;
  padding-top: 2px;
}

.about-expect__heading{
  margin: 0 0 6px 0;
  color: rgba(15,23,42,0.92);
  font-weight: 900;
  letter-spacing: -0.3px;
  font-size: 18px;
}

.about-expect__text{
  margin: 0;
  color: rgba(2,6,23,0.70);
  line-height: 1.85;
  font-weight: 600;
}

.about-expect__divider{
  height: 1px;
  background: rgba(15,23,42,0.08);
  margin: 16px 0;
}

.about-expect__actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.about-expect__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(15,23,42,0.16);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-expect__btn:hover{
  transform: translateY(-2px);
  background: #ffffff;
  color: #0f172a;
}

.about-expect__link{
  text-decoration: none;
  font-weight: 800;
  color: rgba(15,23,42,0.72);
  border-bottom: 1px solid rgba(15,23,42,0.18);
  padding-bottom: 2px;
}

.about-expect__link:hover{
  color: rgba(15,23,42,0.92);
  border-bottom-color: rgba(212,163,115,0.55);
}

@media (max-width: 991.98px){
  .about-expect{ padding: 58px 0; }
  .about-expect__panel{ padding: 22px 18px; border-radius: 18px; }
  .about-expect__title{ font-size: 28px; }
  .about-expect__row{ grid-template-columns: 56px 1fr; }
}
/* ========================================= */
/* CAPABILITIES (Executive Premium – Image LEFT) */
/* ========================================= */

.cap-exec{
  padding: 78px 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: "Open Sans", sans-serif;
}

.cap-exec__wrap{
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 28px 90px rgba(15,23,42,0.12);
  background: #fff;

  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px; /* ✅ equal visual height */
}

/* LEFT image full-bleed */
.cap-exec__media{
  position: relative;
  background: var(--cap-img) center / cover no-repeat;
  background-color: #0f172a;
}

/* executive overlay */
.cap-exec__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.56), rgba(15,23,42,0.08)),
    radial-gradient(900px 520px at 18% 20%, rgba(212,163,115,0.20), transparent 55%);
  pointer-events:none;
}

/* small premium badge on image */
.cap-exec__media-badge{
  position:absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(2,6,23,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  max-width: 360px;
}

.cap-exec__media-label{
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.92;
  margin-bottom: 4px;
}

.cap-exec__media-sub{
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.88;
}

/* RIGHT content */
.cap-exec__content{
  display:flex;
  align-items:center;
  background:
    radial-gradient(900px 520px at 85% 8%, rgba(212,163,115,0.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.95));
}

.cap-exec__inner{
  width: 100%;
  padding: 42px 46px;
  position: relative;
}

/* subtle executive accent line */
.cap-exec__inner::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background: linear-gradient(180deg, rgba(212,163,115,0.95), rgba(212,163,115,0.18));
}

.cap-exec__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15,23,42,0.65);
  margin-bottom: 12px;
}

.cap-exec__kicker::before{
  content:"";
  width: 28px;
  height: 2px;
  background: rgba(212,163,115,0.90);
  border-radius: 999px;
}

.cap-exec__title{
  margin: 0 0 12px 0;
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.12;
  font-size: 34px;
}

.cap-exec__lead{
  margin: 0 0 18px 0;
  color: rgba(2,6,23,0.68);
  font-weight: 600;
  line-height: 1.85;
  max-width: 58ch;
}

/* executive list (NO mini-cards) */
.cap-exec__list{
  margin-top: 14px;
  border-top: 1px solid rgba(15,23,42,0.10);
}

.cap-exec__row{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,23,42,0.10);
}

.cap-exec__name{
  font-weight: 900;
  color: rgba(15,23,42,0.92);
  letter-spacing: -0.2px;
}

.cap-exec__desc{
  color: rgba(2,6,23,0.66);
  font-weight: 600;
  line-height: 1.7;
}

/* note */
.cap-exec__note{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(212,163,115,0.22);
  background: rgba(212,163,115,0.10);
  color: rgba(2,6,23,0.72);
  font-weight: 600;
  line-height: 1.75;
}

/* actions */
.cap-exec__actions{
  display:flex;
  align-items:center;
  gap: 16px;
  margin-top: 20px;
}

.cap-exec__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #fff;
  box-shadow: 0 14px 40px rgba(15,23,42,0.16);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.cap-exec__btn:hover{
  transform: translateY(-2px);
  background:#fff;
  color:#0f172a;
}

.cap-exec__link{
  color: rgba(15,23,42,0.82);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,23,42,0.18);
  padding-bottom: 2px;
}

.cap-exec__link:hover{
  border-bottom-color: rgba(212,163,115,0.75);
}

/* responsive */
@media (max-width: 991.98px){
  .cap-exec{
    padding: 54px 0;
  }

  .cap-exec__wrap{
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 20px;
  }

  .cap-exec__media{
    min-height: 340px;
  }

  .cap-exec__inner{
    padding: 22px 18px;
  }

  .cap-exec__row{
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cap-exec__title{
    font-size: 28px;
  }
}
/* ===================================== */
/* BD Visual (Premium Corporate)         */
/* ===================================== */
.bd-visual{
  padding: 56px 0 26px;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.bd-visual__media{
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 26px 80px rgba(2,6,23,0.12);
  margin: 0;
  background: #0f172a;
}

.bd-visual__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.bd-visual__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.55), rgba(15,23,42,0.10)),
    radial-gradient(900px 520px at 20% 20%, rgba(212,163,115,0.14), transparent 55%);
  pointer-events: none;
}

.bd-visual__panel{
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 60px rgba(2,6,23,0.10);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}

.bd-visual__panel::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background: linear-gradient(180deg, rgba(212,163,115,0.95), rgba(212,163,115,0.18));
}

.bd-visual__kicker{
  font-size: 12px;
  letter-spacing: 2.6px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(15,23,42,0.62);
  margin-bottom: 10px;
}

.bd-visual__title{
  margin: 0 0 12px 0;
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.bd-visual__lead{
  margin: 0 0 16px 0;
  color: #64748b;
  font-weight: 600;
  line-height: 1.85;
  font-size: 15px;
}

.bd-visual__highlights{
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.bd-visual__item{
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(248,250,252,0.85);
}

.bd-visual__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(15,23,42,0.75);
  margin-bottom: 6px;
}

.bd-visual__value{
  color: rgba(2,6,23,0.70);
  font-weight: 600;
  line-height: 1.6;
  font-size: 14px;
}

.bd-visual__actions{
  margin-top: 16px;
}

.bd-visual__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(15,23,42,0.16);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.bd-visual__btn:hover{
  transform: translateY(-2px);
  background: #ffffff;
  color: #0f172a;
}

@media (max-width: 991.98px){
  .bd-visual{ padding: 44px 0 20px; }
  .bd-visual__media{ min-height: 280px; border-radius: 18px; }
  .bd-visual__panel{ border-radius: 18px; }
}
/* ===================================== */
/* Business Development – Executive Split */
/* Premium, centered, no empty space      */
/* ===================================== */

.bdx{
  padding: 72px 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(180deg, rgba(15,23,42,0.04), rgba(255,255,255,0));
  font-family: "Open Sans", sans-serif;
}

/* The “website” shell that controls width + eliminates dead space */
.bdx__shell{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: #ffffff;
  box-shadow: 0 26px 90px rgba(2,6,23,0.10);
}

/* Left rail */
.bdx__rail{
  height: 100%;
  padding: 38px 34px;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(212,163,115,0.18), transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #1b2336 100%);
  color: rgba(255,255,255,0.92);
  position: relative;
}

.bdx__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2.6px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 14px;
}

.bdx__kicker::before{
  content:"";
  width: 28px;
  height: 2px;
  background: rgba(212,163,115,0.95);
  border-radius: 999px;
}

.bdx__title{
  margin: 0 0 10px 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #ffffff;
}

.bdx__lead{
  margin: 0 0 22px 0;
  color: rgba(226,232,240,0.88);
  font-weight: 650;
  line-height: 1.85;
}

.bdx__facts{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bdx__fact{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 14px 14px;
}

.bdx__fact-label{
  font-size: 11px;
  letter-spacing: 2.2px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 6px;
}

.bdx__fact-value{
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.bdx__actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.bdx__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(212,163,115,0.95);
  border: 1px solid rgba(212,163,115,0.95);
  color: #0f172a;
  transition: transform 180ms ease, filter 180ms ease;
}

.bdx__btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.bdx__link{
  color: rgba(226,232,240,0.85);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(226,232,240,0.35);
  padding-bottom: 2px;
}

.bdx__link:hover{
  color: rgba(255,255,255,0.95);
  border-bottom-color: rgba(255,255,255,0.60);
}

/* Right content */
.bdx__content{
  height: 100%;
  padding: 40px 44px;
  background: #ffffff;
}

.bdx__body p{
  margin: 0 0 16px 0;
  color: rgba(15,23,42,0.82);
  font-weight: 600;
  line-height: 1.9;
}

/* Executive “rows”, not cards */
.bdx__highlights{
  margin-top: 26px;
  border-top: 1px solid rgba(15,23,42,0.08);
}

.bdx__hl{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.bdx__hl-title{
  font-size: 12px;
  letter-spacing: 2.2px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(15,23,42,0.82);
}

.bdx__hl-text{
  color: rgba(15,23,42,0.72);
  font-weight: 650;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991.98px){
  .bdx{
    padding: 54px 0;
  }

  .bdx__rail,
  .bdx__content{
    padding: 26px 20px;
  }

  .bdx__title{
    font-size: 28px;
  }

  .bdx__hl{
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
/* =============================== */
/* Trusted Partner (Premium)       */
/* =============================== */

.ams-trust{
  padding: 72px 0;
  background:
    radial-gradient(900px 520px at 14% 10%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(180deg, rgba(248,250,252,0.90), rgba(255,255,255,1));
  font-family: "Open Sans", sans-serif;
}

.ams-trust__wrap{
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 30px 90px rgba(2,6,23,0.10);
  overflow: hidden;
  position: relative;
}

.ams-trust__wrap::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 4px;
  background: linear-gradient(180deg, rgba(212,163,115,0.95), rgba(212,163,115,0.20));
}

.ams-trust__kicker{
  padding: 26px 34px 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(15,23,42,0.62);
}

.ams-trust__grid{
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  padding: 18px 34px 28px;
  align-items: start;
}

.ams-trust__title{
  margin: 0 0 10px 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #0f172a;
}

.ams-trust__lead{
  margin: 0 0 14px 0;
  color: rgba(15,23,42,0.74);
  font-size: 15.8px;
  line-height: 1.9;
  font-weight: 700;
  max-width: 62ch;
}

.ams-trust__text{
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
  max-width: 66ch;
}

/* Aside */
.ams-trust__aside{
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15,23,42,0.06), rgba(15,23,42,0.02));
  border: 1px solid rgba(15,23,42,0.10);
  padding: 18px 18px 16px;
}

.ams-trust__aside-title{
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15,23,42,0.72);
  margin-bottom: 10px;
}

.ams-trust__list{
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}

.ams-trust__list li{
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: rgba(15,23,42,0.74);
  font-weight: 700;
  line-height: 1.6;
  font-size: 13.5px;
}

.ams-trust__list li::before{
  content:"";
  position:absolute;
  left:0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: rgba(212,163,115,0.95);
  border-radius: 999px;
}

/* Actions */
.ams-trust__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ams-trust__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #fff;
  box-shadow: 0 14px 44px rgba(2,6,23,0.18);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ams-trust__btn:hover{
  transform: translateY(-2px);
  background: #ffffff;
  color: #0f172a;
}

.ams-trust__link{
  color: rgba(15,23,42,0.72);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,23,42,0.18);
  padding-bottom: 3px;
}

.ams-trust__link:hover{
  color: rgba(15,23,42,0.92);
  border-bottom-color: rgba(212,163,115,0.65);
}

/* Footer note */
.ams-trust__foot{
  padding: 0 34px 26px;
}

.ams-trust__foot-line{
  height: 1px;
  background: rgba(15,23,42,0.08);
  margin: 0 0 12px 0;
}

.ams-trust__foot-text{
  margin: 0;
  color: rgba(15,23,42,0.55);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991.98px){
  .ams-trust{
    padding: 54px 0;
  }

  .ams-trust__grid{
    grid-template-columns: 1fr;
    padding: 14px 18px 18px;
  }

  .ams-trust__kicker{
    padding: 18px 18px 0;
  }

  .ams-trust__title{
    font-size: 28px;
  }

  .ams-trust__foot{
    padding: 0 18px 18px;
  }
}
/* =============================== */
/* Service Overview (SaaS Corporate) */
/* =============================== */

.svc-overview{
  padding: 44px 0 68px;
  background:
    radial-gradient(1000px 520px at 18% 10%, rgba(212,163,115,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.svc-overview__media{
  height: 100%;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 28px 88px rgba(2,6,23,0.10);
  background: #0f172a;
}

.svc-overview__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.svc-overview__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(2,6,23,0.10), rgba(2,6,23,0.30)),
    radial-gradient(900px 520px at 20% 20%, rgba(212,163,115,0.16), transparent 55%);
  pointer-events:none;
}

.svc-overview__panel{
  height: 100%;
  border-radius: 22px;
  padding: 34px 32px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 22px 70px rgba(2,6,23,0.08);
  position: relative;
  overflow: hidden;
}

.svc-overview__panel::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 4px;
  background: linear-gradient(180deg, #d4a373, rgba(212,163,115,0.20));
}

.svc-overview__kicker{
  display:inline-block;
  font-size: 12px;
  letter-spacing: 2.8px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(15,23,42,0.60);
  margin-bottom: 10px;
}

.svc-overview__title{
  margin: 0 0 10px 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.7px;
  font-weight: 900;
  color: #0f172a;
}

.svc-overview__lead{
  margin: 0 0 18px 0;
  color: rgba(51,65,85,0.92);
  font-weight: 650;
  line-height: 1.85;
  font-size: 15.5px;
}

/* KPI strip */
.svc-overview__kpis{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 18px;
}

.svc-overview__kpi{
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(248,250,252,0.78);
}

.svc-overview__kpi-label{
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(15,23,42,0.55);
  margin-bottom: 6px;
}

.svc-overview__kpi-value{
  font-size: 13.5px;
  font-weight: 850;
  color: rgba(15,23,42,0.92);
  line-height: 1.3;
}

/* Structured rows */
.svc-overview__list{
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,0.08);
  display: grid;
  gap: 14px;
}

.svc-overview__row{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.svc-overview__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(212,163,115,0.95);
  box-shadow: 0 10px 26px rgba(212,163,115,0.25);
  flex: 0 0 auto;
}

.svc-overview__row-title{
  font-weight: 900;
  color: rgba(15,23,42,0.92);
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.svc-overview__row-text{
  color: rgba(100,116,139,0.95);
  font-weight: 650;
  line-height: 1.7;
  font-size: 14px;
}

/* Actions */
.svc-overview__actions{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.svc-overview__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  box-shadow: 0 16px 46px rgba(2,6,23,0.16);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.svc-overview__btn:hover{
  transform: translateY(-2px);
  background: #ffffff;
  color: #0f172a;
}

.svc-overview__link{
  font-weight: 850;
  color: rgba(15,23,42,0.70);
  text-decoration: none;
  border-bottom: 1px solid rgba(15,23,42,0.20);
  padding-bottom: 2px;
}

.svc-overview__link:hover{
  color: rgba(15,23,42,0.95);
  border-bottom-color: rgba(212,163,115,0.55);
}

/* Responsive */
@media (max-width: 991.98px){
  .svc-overview{
    padding: 32px 0 54px;
  }
  .svc-overview__media{
    min-height: 320px;
    border-radius: 18px;
  }
  .svc-overview__panel{
    padding: 22px 18px;
    border-radius: 18px;
  }
  .svc-overview__title{
    font-size: 26px;
  }
  .svc-overview__kpis{
    grid-template-columns: 1fr;
  }
}


/* ========================================= */
/* BOM REBORN: PREMIUM CORPORATE GRID SYSTEM */
/* ========================================= */

/* 1. Main Container & Background */
.bom-reborn {
  position: relative;
  padding: 100px 0;
  background-color: #0b1120; /* Ultra Dark Navy */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Background Abstract Effect */
.bom-reborn::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15), transparent 70%);
  z-index: 0;
}

.bom-reborn::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.1), transparent 70%);
  z-index: 0;
}

.bom-reborn__container {
  position: relative;
  z-index: 2;
  max-width: 1400px; /* Lățime Enterprise */
  padding: 0 40px;
  margin: 0 auto;
}

/* 2. Header Typography */
.bom-reborn__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.bom-reborn__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4a373; /* Gold */
  border: 1px solid rgba(212, 163, 115, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.bom-reborn__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
  background: linear-gradient(90deg, #d4a373, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bom-reborn__subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #94a3b8; /* Slate gray text */
  font-weight: 400;
}

/* 3. The Grid System (Bento Box) */
.bom-reborn__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr; /* Stânga mai mare, Dreapta mai mică */
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 60px;
}

/* Mobile Responsive Grid */
@media (max-width: 991px) {
  .bom-reborn__grid {
    grid-template-columns: 1fr;
  }
}

/* 4. Card Styling - Base */
.bom-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bom-card:hover {
  border-color: rgba(212, 163, 115, 0.5);
  transform: translateY(-5px);
}

/* Card A: Main (Stânga, întins pe 2 rânduri vizual) */
.bom-card--main {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}

.bom-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.bom-card__text {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 90%;
}

.bom-card__stats {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4a373;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.bom-card__bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.02);
  transform: rotate(-15deg);
  pointer-events: none;
}

/* Card B: Dark List (Dreapta Sus) */
.bom-card--dark {
  background: rgba(15, 23, 42, 0.6);
}

.bom-card__sm-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  margin-bottom: 24px;
  font-weight: 700;
}

.bom-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bom-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bom-step:last-child {
  border-bottom: none;
}

.bom-step__num {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  background: #d4a373;
  padding: 4px 8px;
  border-radius: 6px;
}

.bom-step__txt {
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
}

/* Card C: Gold Highlight (Dreapta Jos) */
.bom-card--gold {
  background: linear-gradient(135deg, #d4a373 0%, #b58348 100%);
  border: none;
}

.bom-card--gold .bom-card__sm-title {
  color: #0f172a; /* Dark text on gold */
  opacity: 0.7;
}

.bom-deliverables {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 16px;
  border-radius: 8px;
  color: #0f172a;
  font-weight: 700;
}

.deliv-item i {
  color: #fff;
}

/* 5. CTA Bar */
.bom-reborn__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.8);
}

.cta-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

/* Buttons */
.btn-premium-solid {
  background: #ffffff;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-premium-solid:hover {
  background: #d4a373;
  color: #fff;
}

.btn-premium-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-premium-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Mobile CTA Fix */
@media (max-width: 768px) {
  .bom-reborn__cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-premium-solid, .btn-premium-outline {
    width: 100%;
    text-align: center;
  }
}

/* Update/Add these specific rules to your existing .bom-reborn CSS */

.bom-card__stats {
  display: flex;
  align-items: flex-start; /* Aligns items to top */
  justify-content: space-between; /* Spreads them out nicely */
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto; /* Pushes stats to bottom of card */
}

.stat-item {
  display: flex;
  flex-direction: column;
  flex: 1; /* Ensures equal width */
}

/* New style for the description text */
.stat-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 500;
}

/* Adjust divider height */
.stat-divider {
  width: 1px;
  height: 50px; /* Slightly taller to match content */
  background: rgba(255, 255, 255, 0.1);
  margin-top: 5px;
}

/* Mobile responsive tweak for stats */
@media (max-width: 576px) {
  .bom-card__stats {
    flex-direction: column;
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
  }
}



/* ========================================= */
/* INDUSTRY PREMIUM (Light Matrix Design)    */
/* ========================================= */

.ind-premium {
  position: relative;
  padding: 100px 0 120px;
  background-color: #f8fafc; /* Very Light Grey/White */
  font-family: "Open Sans", sans-serif;
}

.ind-premium__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Header --- */
.ind-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
  border-bottom: 2px solid #d4a373;
  padding-bottom: 4px;
}

.ind-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  color: #0f172a; /* Navy */
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.text-serif {
  font-family: "Playfair Display", serif; /* Sau un font serif elegant daca ai */
  font-style: italic;
  font-weight: 400;
  color: #0f172a;
}

.ind-premium__lead {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  font-weight: 400;
  margin-top: 10px;
  border-left: 3px solid rgba(15, 23, 42, 0.1);
  padding-left: 20px;
}

/* --- Left Column: Narrative --- */
.ind-narrative {
  padding-right: 20px;
}

.ind-narrative__head {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 12px;
}

.ind-narrative__text {
  font-size: 15px;
  line-height: 1.8;
  color: #64748b;
}

.ind-narrative__divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  margin: 30px 0;
}

.ind-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ind-check-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ind-check-list li i {
  color: #d4a373;
  font-size: 12px;
}

.ind-narrative__cta {
  margin-top: 40px;
}

.btn-ind-primary {
  display: inline-block;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px; /* Mai pătrățos pentru corporate */
  transition: all 0.3s ease;
}

.btn-ind-primary:hover {
  background: #d4a373;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Right Column: The Matrix (Grid) --- */
.ind-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .ind-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .ind-matrix {
    grid-template-columns: 1fr;
  }
}

.ind-card {
  background: #ffffff;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.ind-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
  border-color: #d4a373;
}

.ind-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ind-card__num {
  font-size: 12px;
  font-weight: 800;
  color: #cbd5e1;
}

.ind-card__icon {
  font-size: 20px;
  color: #d4a373;
}

.ind-card__title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.ind-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Highlight card style (Last one) */
.ind-card--highlight {
  background: #0f172a;
  border-color: #0f172a;
}
.ind-card--highlight .ind-card__title,
.ind-card--highlight .ind-card__icon {
  color: #ffffff;
}
.ind-card--highlight .ind-card__desc {
  color: rgba(255, 255, 255, 0.7);
}
.ind-card--highlight:hover {
  border-color: #0f172a; /* Keep dark border */
  background: #1e293b;
}

/* --- Bottom Bar: Specs --- */
.ind-specs-bar {
  margin-top: 60px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
}

.ind-spec {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94a3b8;
  font-weight: 800;
  margin-bottom: 4px;
}

.spec-val {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.spec-divider {
  width: 1px;
  height: 30px;
  background: rgba(15, 23, 42, 0.1);
}

/* Mobile Responsive Specs */
@media (max-width: 991px) {
  .ind-specs-bar {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .spec-divider {
    display: none;
  }
  .ind-spec {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
  }
}
/* ========================================= */
/* EXECUTIVE BRIEFING (Premium Overlap)      */
/* ========================================= */

.exec-brief {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc; /* Very light gray */
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Wrapper to hold the flex layout */
.exec-brief__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.exec-brief__visual {
  width: 55%; /* Takes up more than half */
  position: relative;
  z-index: 1;
}

.exec-brief__img-holder {
  position: relative;
  border-radius: 4px; /* Sharp corporate look */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 650px; /* Fixed tall height */
}

.exec-brief__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* Slight zoom for effect */
}

/* Pattern behind image */
.exec-brief__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  z-index: -1;
}

/* --- Right Column: The Floating Card --- */
.exec-brief__card {
  width: 55%; /* Overlaps the image */
  margin-left: -10%; /* The overlapping magic */
  background: #ffffff;
  padding: 60px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Typography */
.exec-brief__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.exec-brief__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-serif {
  font-family: "Playfair Display", serif; /* Elegant serif font */
  font-style: italic;
  font-weight: 400;
}

.exec-brief__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 0;
}

.exec-brief__divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  margin: 30px 0;
}

/* The Solutions List */
.exec-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.exec-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.exec-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.exec-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.exec-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip (Navy Bar) */
.exec-kpi-strip {
  background: #0f172a;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-left: 4px solid #d4a373;
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.kpi-value {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.exec-brief__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-exec-primary {
  background: #d4a373;
  color: #0f172a;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-exec-primary:hover {
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
}

.btn-exec-link {
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-exec-link:hover {
  border-color: #d4a373;
  color: #0f172a;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .exec-brief { padding: 60px 0; }
  
  .exec-brief__wrapper {
    flex-direction: column;
  }
  
  .exec-brief__visual {
    width: 100%;
    margin-bottom: -40px; /* Pull card up */
  }
  
  .exec-brief__img-holder {
    height: 400px;
  }
  
  .exec-brief__card {
    width: 90%;
    margin-left: 0;
    padding: 40px 30px;
  }

  .exec-brief__title {
    font-size: 32px;
  }
}



/* ========================================= */
/* INTRO PREMIUM (Clean Corporate Design)    */
/* ========================================= */

.intro-premium {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

/* Background decorative element (optional) */
.intro-premium::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.08), transparent 70%);
  pointer-events: none;
}

/* --- Header --- */
.intro-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373; /* Gold */
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 5px;
}

.intro-premium__tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #d4a373;
}

.intro-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  color: #0f172a; /* Navy */
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif; /* Elegant styling */
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.intro-premium__subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Cards --- */
.intro-card {
  background: #ffffff;
  padding: 40px 32px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px; /* Modern roundness */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.1);
  border-color: rgba(212, 163, 115, 0.3);
}

.intro-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.intro-card__icon-box {
  width: 56px;
  height: 56px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  transition: background 0.3s ease, color 0.3s ease;
}

.intro-card:hover .intro-card__icon-box {
  background: #0f172a;
  color: #d4a373;
}

.intro-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #cbd5e1;
  opacity: 0.8;
}

.intro-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.intro-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 20px;
  flex-grow: 1; /* Pushes content to fill height */
}

/* Bottom decorative line */
.intro-card__line {
  height: 3px;
  width: 0;
  background: #d4a373;
  transition: width 0.4s ease;
  margin-top: auto;
}

.intro-card:hover .intro-card__line {
  width: 40px;
}

/* --- Footer Note --- */
.intro-premium__note {
  background: #f8fafc;
  border-left: 4px solid #d4a373;
  padding: 24px 32px;
  border-radius: 0 8px 8px 0;
  text-align: center;
}

.intro-premium__note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .intro-premium { padding: 60px 0; }
  .intro-card { padding: 30px 24px; }
  .intro-card:hover { transform: none; }
}

/* ========================================= */
/* DETAILS PREMIUM (Dark Split Design)       */
/* ========================================= */

.details-premium {
  background-color: #0f172a; /* Dark Navy Background */
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* --- Left Side: Media --- */
.details-premium__media {
  position: relative;
  height: 100%;
  min-height: 600px; /* Ensure height on desktop */
  overflow: hidden;
}

.details-premium__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}

/* Subtle Zoom Effect on Image */
.details-premium:hover .details-premium__media img {
  transform: scale(1.05);
}

.details-premium__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient from transparent to Navy to blend seamlessly */
  background: linear-gradient(90deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
}

/* --- Right Side: Content --- */
.details-premium__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Typography */
.details-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4a373; /* Gold */
  margin-bottom: 20px;
  border: 1px solid rgba(212, 163, 115, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
}

.details-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.details-premium__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #94a3b8; /* Slate Light */
  margin-bottom: 40px;
  max-width: 90%;
}

/* Pillars List */
.details-premium__pillars {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.prem-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-left-color 0.3s ease;
}

.prem-pillar:hover {
  border-left-color: #d4a373; /* Light up border on hover */
}

.prem-pillar__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a373;
  font-size: 16px;
}

.prem-pillar__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}

.prem-pillar__text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1; /* Lighter than slate */
  margin: 0;
}

/* Button */
.btn-premium-gold {
  display: inline-flex;
  align-items: center;
  background: #d4a373;
  color: #0f172a;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-premium-gold:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .details-premium__media {
    min-height: 300px;
  }
  .details-premium__content {
    padding: 60px 30px;
  }
}

/* ========================================= */
/* SERVICES PREMIUM (Architectural Layout)   */
/* ========================================= */

.srv-premium {
  overflow: hidden;
  background-color: #f8fafc; /* Clean background */
  font-family: "Open Sans", sans-serif;
}

.srv-block {
  padding: 100px 0;
  position: relative;
}

/* Alternate background for the middle block */
.srv-block--alt {
  background-color: #ffffff;
}

/* --- Media Styling --- */
.srv-media {
  position: relative;
  height: 550px; /* Tall, majestic images */
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.srv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.srv-block:hover .srv-media img {
  transform: scale(1.03); /* Subtle zoom */
}

/* Decorative Gold Square */
.srv-media__accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid #d4a373; /* Gold */
  z-index: 2;
  pointer-events: none;
}

.srv-media__accent--left {
  left: auto;
  right: -20px; /* Flip for alternate rows */
}

/* --- Card Styling (The Overlapping Part) --- */
.srv-card {
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 5;
  border-top: 4px solid #0f172a; /* Navy accent top */
}

/* Negative margins create the overlap effect */
.srv-card--right {
  margin-left: -80px;
}

.srv-card--left {
  margin-right: -80px;
}

/* Typography inside card */
.srv-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: #f1f5f9; /* Subtle background number */
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
  z-index: -1;
}

.srv-card__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: #d4a373;
  margin-bottom: 16px;
}

.srv-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.srv-card__text {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 30px;
}

/* Button */
.srv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.srv-btn:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .srv-block { padding: 60px 0; }
  
  .srv-media {
    height: 350px;
    margin-bottom: -30px; /* Pull card up slightly */
    border-radius: 4px 4px 0 0;
  }
  
  .srv-card {
    margin: 0 15px; /* Add side margin on mobile */
    padding: 40px 30px;
    border-radius: 4px;
  }
  
  .srv-media__accent { display: none; } /* Hide decoration on mobile */
}

/* ========================================= */
/* FOCUS AREAS (Dark Command Center)         */
/* ========================================= */

.focus-premium {
  background-color: #0b1120; /* Ultra Dark Navy */
  padding: 100px 0;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  position: relative;
}

/* --- Left Column: Sticky Narrative --- */
.focus-premium__sticky {
  position: sticky;
  top: 100px; /* Sticks to top when scrolling */
}

.focus-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
}

.focus-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.focus-premium__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 40px;
}

/* Insight Box */
.focus-insight {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}

.focus-insight__row {
  display: flex;
  flex-direction: column;
}

.focus-insight__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4a373;
  margin-bottom: 6px;
  font-weight: 700;
}

.focus-insight__val {
  font-size: 15px;
  color: #e2e8f0;
  font-weight: 600;
}

.focus-insight__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 0;
}

/* Buttons */
.focus-premium__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-focus-primary {
  background: #ffffff;
  color: #0f172a;
  padding: 14px 28px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}

.btn-focus-primary:hover {
  background: #d4a373;
  color: #0f172a;
  transform: translateY(-2px);
}

.btn-focus-link {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.btn-focus-link:hover {
  opacity: 1;
  color: #d4a373;
}

/* --- Right Column: Industries List --- */
.focus-list {
  padding-left: 20px;
}

.focus-list__head {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.focus-list__title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.focus-list__sub {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* List Items */
.focus-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.focus-item:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 20px; /* Slight slide effect */
}

/* Gold Accent Line on Hover */
.focus-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 3px;
  background: #d4a373;
  transition: height 0.3s ease;
}

.focus-item:hover::before {
  height: 60%;
}

.focus-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  flex-shrink: 0;
  transition: all 0.3s;
}

.focus-item:hover .focus-item__icon {
  border-color: #d4a373;
  color: #d4a373;
}

.focus-item__title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.focus-item__text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.focus-list__note {
  margin-top: 40px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

/* Responsive */
@media (max-width: 991px) {
  .focus-premium { padding: 60px 0; }
  .focus-list { padding-left: 0; margin-top: 40px; }
  .focus-premium__sticky { position: static; }
}

/* ========================================= */
/* PORTFOLIO PREMIUM (Filterable Grid)       */
/* ========================================= */

.portfolio-premium {
  padding: 100px 0;
  background-color: #f8fafc; /* Very light background for contrast */
  font-family: "Open Sans", sans-serif;
}

/* Header */
.portfolio-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 12px;
}

.portfolio-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
}

/* Filters */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: transparent;
  padding: 0;
  border: none;
}

.pf-btn {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.pf-btn:hover {
  color: #0f172a;
}

/* Active State for Filter (is-checked class comes from JS) */
.pf-btn.is-checked {
  color: #0f172a;
  border-bottom-color: #d4a373;
}

/* Card Styling */
.portfolio-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px; /* Fixed height for uniformity */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

/* Image Container */
.portfolio-card__img {
  width: 100%;
  height: 100%;
}

.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Zoom */
.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.1);
}

/* Overlay Gradient */
.portfolio-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.4) 40%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(15, 23, 42, 0.1) 100%
  );
}

/* Card Content */
.portfolio-card__content {
  width: 100%;
  transform: translateY(10px); /* Slightly pushed down initially */
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-card__content {
  transform: translateY(0);
}

.pc-cat {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4a373;
  margin-bottom: 6px;
  font-weight: 700;
}

.pc-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* Animated Arrow */
.pc-arrow {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease 0.1s; /* Slight delay */
}

.portfolio-card:hover .pc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================= */
/* CTA PREMIUM (Global Gateway)              */
/* ========================================= */

.cta-premium {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Matches previous section bg or white */
  font-family: "Open Sans", sans-serif;
}

.cta-premium__wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  color: #ffffff;
}

/* Abstract Background Pattern */
.cta-premium__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 163, 115, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(212, 163, 115, 0.05) 0%, transparent 20%);
  z-index: 0;
}

/* Content styling */
.cta-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 20px;
  background: rgba(212, 163, 115, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(212, 163, 115, 0.2);
  position: relative;
  z-index: 1;
}

.cta-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-premium__lead {
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.cta-premium__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.btn-cta-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-cta-gold:hover {
  background: #ffffff;
  transform: translateY(-2px);
  color: #0f172a;
}

.btn-cta-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-cta-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Locations Strip (Bottom) */
.cta-locations {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 16px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  gap: 30px;
}

.loc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.loc-card__icon {
  color: #d4a373;
  font-size: 18px;
}

.loc-card__info {
  display: flex;
  flex-direction: column;
}

.loc-city {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.loc-role {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.loc-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .cta-premium__wrapper {
    padding: 60px 24px;
    text-align: center;
  }
  
  .cta-locations {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 20px;
  }
  
  .loc-card {
    width: 100%;
  }
  
  .loc-divider {
    display: none;
  }
}

/* ========================================= */
/* ABOUT PREMIUM (Corporate Legacy)          */
/* ========================================= */

.about-prem {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* --- Image Area --- */
.about-prem__media {
  position: relative;
  padding-left: 30px; /* Space for frame */
  padding-bottom: 30px; /* Space for frame */
}

.about-prem__img-holder {
  position: relative;
  z-index: 2;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-prem__img-holder img {
  width: 100%;
  height: auto;
  display: block;
}

/* Gold Frame Behind Image */
.about-prem__frame {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border: 2px solid #d4a373; /* Gold */
  z-index: 1;
}

/* Floating Badge */
.about-prem__badge {
  position: absolute;
  bottom: 40px;
  right: -20px; /* Floats off the image */
  background: #0f172a; /* Navy */
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
  z-index: 3;
  text-align: center;
  border-bottom: 4px solid #d4a373;
}

.badge-year {
  display: block;
  font-size: 10px;
  opacity: 0.6;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.badge-title {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.badge-sub {
  display: block;
  font-size: 11px;
  color: #d4a373;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Content Area --- */
.about-prem__content {
  padding-left: 20px;
}

.about-prem__kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4a373;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-prem__kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #d4a373;
}

.about-prem__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.about-prem__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 30px;
}

.about-prem__divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

/* Feature List */
.about-prem__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.prem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.prem-item__icon {
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.prem-item__text strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 4px;
}

.prem-item__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* Buttons */
.about-prem__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-about-gold {
  background: #0f172a; /* Navy Button */
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-about-gold:hover {
  background: #d4a373;
  color: #0f172a;
}

.btn-about-link {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-about-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .about-prem { padding: 60px 0; }
  
  .about-prem__media {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
  
  .about-prem__badge {
    right: 20px;
    bottom: -20px;
  }
  
  .about-prem__content {
    padding-left: 0;
  }
}

/* ========================================= */
/* EXPECT PREMIUM (Dark Process Design)      */
/* ========================================= */

.expect-premium {
  padding: 100px 0;
  background-color: #0b1120; /* Deep Navy */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

/* Background Texture (Optional) */
.expect-premium::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

/* --- Left Column --- */
.expect-premium__sticky {
  position: sticky;
  top: 100px;
}

.expect-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
}

.expect-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.expect-premium__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* Note Box */
.expect-note {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #d4a373;
  padding: 24px 30px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 40px;
  position: relative;
}

.expect-note__icon {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.1);
}

.expect-note__text {
  font-size: 15px;
  font-style: italic;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

/* Buttons */
.expect-premium__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-expect-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-expect-gold:hover {
  background: #ffffff;
  color: #0f172a;
}

.btn-expect-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-expect-link:hover {
  opacity: 1;
  color: #d4a373;
}

/* --- Right Column: The Steps --- */
.expect-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expect-step {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.expect-step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 163, 115, 0.4);
  transform: translateX(5px);
}

.expect-step__num {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(212, 163, 115, 0.2); /* Faded Gold */
  line-height: 1;
  flex-shrink: 0;
}

.expect-step:hover .expect-step__num {
  color: #d4a373; /* Lit up Gold on hover */
}

.expect-step__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.expect-step__text {
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .expect-premium { padding: 60px 0; }
  .expect-step { padding: 24px; }
  .expect-premium__sticky { position: static; margin-bottom: 40px; }
}

/* ========================================= */
/* CAPABILITIES PREMIUM (Split Grid)         */
/* ========================================= */

.cap-premium {
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* --- Left Visual --- */
.cap-premium__visual {
  position: relative;
  height: 100%;
  min-height: 700px; /* Tall visual */
  overflow: hidden;
}

.cap-premium__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cap-premium__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.2); /* Slight Navy tint */
  z-index: 1;
}

/* Glass Badge on Image */
.cap-glass-badge {
  position: absolute;
  bottom: 50px;
  right: 0; /* Align right to touch the content side */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px 40px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 4px solid #d4a373;
  z-index: 2;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cap-glass-badge__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.cap-glass-badge__val {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

/* --- Right Content --- */
.cap-premium__content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Typography */
.cap-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.cap-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cap-premium__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 90%;
}

/* The 2x2 Grid */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.cap-item {
  padding: 24px;
  background: #f8fafc; /* Very light gray */
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cap-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-5px);
  border-color: rgba(212, 163, 115, 0.3);
}

.cap-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  color: #d4a373;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.cap-item:hover .cap-item__icon {
  background: #0f172a;
  color: #ffffff;
}

.cap-item__title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.cap-item__desc {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Footer & Actions */
.cap-premium__footer {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 30px;
}

.cap-note {
  font-size: 14px;
  color: #475569;
  font-style: italic;
  margin-bottom: 24px;
  background: rgba(212, 163, 115, 0.1);
  padding: 12px 16px;
  border-radius: 4px;
  display: inline-block;
}

.cap-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-cap-primary {
  background: #0f172a;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-cap-primary:hover {
  background: #d4a373;
  color: #0f172a;
}

.btn-cap-link {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-cap-link:hover {
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .cap-premium__visual {
    min-height: 300px;
  }
  .cap-glass-badge {
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-top: 4px solid #d4a373;
  }
  .cap-premium__content {
    padding: 60px 24px;
  }
  .cap-grid {
    grid-template-columns: 1fr; /* Stack grid on mobile */
  }
}



/* ========================================= */
/* 1. STRATEGIC CORPORATE (Fix Image & Size) */
/* ========================================= */

.strat-corp {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow: hidden; /* Ensures floating elements don't break layout */
}

/* --- Content Side --- */
.strat-corp__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #53575a; /* Darker gray for readability */
  margin-bottom: 16px;
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 4px;
}

.strat-corp__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4vw, 52px); /* Mare și impunător */
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.strat-corp__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Principle Box */
.strat-corp__principle {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  background: #f8fafc;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #d4a373; /* Gold accent on left */
}

.principle-text {
  font-family: "Playfair Display", serif; /* Elegant font if available, else Sans */
  font-size: 18px;
  font-style: italic;
  color: #0f172a;
  margin: 0;
  line-height: 1.6;
}

.strat-corp__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Button */
.btn-strat-corp {
  display: inline-flex;
  align-items: center;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-strat-corp:hover {
  background: #d4a373;
  color: #0f172a;
  transform: translateY(-2px);
}

/* --- Visual Side (Fixed Image Visibility) --- */
.strat-corp__visual {
  position: relative;
  /* Padding creates space for the floating card to overlap without being cut off */
  padding-bottom: 60px; 
  padding-left: 40px; 
}

.strat-corp__img-holder {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.12);
  z-index: 1;
  /* Force a minimum height to ensure image visibility even if loading slow */
  min-height: 450px; 
  background-color: #f1f5f9; /* Placeholder color */
}

.strat-corp__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the box nicely */
  display: block;
}

/* Floating Capabilities Card */
.strat-corp__caps-card {
  position: absolute;
  bottom: 0; /* Align to bottom padding edge */
  left: 0; /* Align to left padding edge */
  background: #0f172a; /* Navy Background */
  color: #ffffff;
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
  z-index: 2;
  min-width: 300px;
  border-top: 4px solid #d4a373;
}

.caps-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}

.caps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caps-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.caps-list li:last-child {
  margin-bottom: 0;
}

.caps-list li i {
  color: #d4a373; /* Gold checkmarks */
  font-size: 16px;
}

.caps-list li span {
  font-size: 15px;
  color: #e2e8f0;
  font-weight: 500;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .strat-corp { padding: 60px 0; }
  
  .strat-corp__visual {
    padding: 0;
    margin-top: 60px;
  }
  
  .strat-corp__caps-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -40px; /* Pull it up over the image slightly */
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    min-width: auto;
  }
}

/* ========================================= */
/* 2. UPDATE: WHO WE ARE (Make Image Bigger) */
/* Adauga acest cod la finalul styles.css    */
/* ========================================= */

/* Mărim containerul imaginii pentru About Us */
.about-prem__img-holder {
  /* Creștem înălțimea minimă pentru a face imaginea mai impunătoare */
  min-height: 550px; 
}

/* Asigurăm că imaginea acoperă tot spațiul */
.about-prem__img-holder img {
  height: 100%; 
  object-fit: cover;
}

/* Ajustăm rama decorativă să se potrivească cu noua dimensiune */
.about-prem__frame {
  width: 85%; /* Mai lată */
  height: 85%; /* Mai înaltă */
}

/* Pe mobil, păstrăm proporții normale */
@media (max-width: 991px) {
  .about-prem__img-holder {
    min-height: 400px;
  }
}

/* ========================================= */
/* STRATEGY MATRIX (Services Grid)           */
/* ========================================= */

.strat-matrix {
  padding: 100px 0 120px;
  background-color: #f8fafc; /* Light gray background for contrast with the white header */
  font-family: "Open Sans", sans-serif;
}

/* --- Header Section --- */
.strat-matrix__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a; /* Navy */
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.strat-matrix__divider {
  width: 60px;
  height: 4px;
  background: #d4a373; /* Gold */
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.strat-matrix__subtitle {
  font-size: 16px;
  color: #64748b; /* Slate */
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Card Styling --- */
.strat-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.05); /* Very subtle border */
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

/* Hover Effect: Lift & Accent */
.strat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(212, 163, 115, 0.3); /* Gold border hint */
}

/* Top line animation on hover */
.strat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #d4a373;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.strat-card:hover::before {
  transform: scaleX(1);
}

/* Card Header: Icon + Number */
.strat-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.strat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0f172a;
  transition: all 0.3s ease;
}

.strat-card:hover .strat-card__icon {
  background: #0f172a;
  color: #ffffff;
}

.strat-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #e2e8f0; /* Very light gray number */
  line-height: 1;
  transition: color 0.3s ease;
}

.strat-card:hover .strat-card__num {
  color: #d4a373; /* Turns Gold on hover */
}

/* Card Content */
.strat-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.strat-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 0;
  flex-grow: 1; /* Pushes content to fill height uniformly */
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .strat-matrix { 
    padding: 60px 0 80px; 
  }
  .strat-card { 
    padding: 30px 24px; 
  }
  .strat-matrix__title {
    font-size: 28px;
  }
}

/* ========================================= */
/* STRATEGY CLOSING (Executive Card)         */
/* ========================================= */

.strat-closing {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Matches the previous section for seamless flow */
  font-family: "Open Sans", sans-serif;
}

.strat-closing__box {
  background: #0f172a; /* Deep Navy */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 60px 40px;
}

/* Top Gold Accent Line */
.strat-closing__accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #d4a373;
  border-radius: 0 0 4px 4px;
  z-index: 2;
}

.strat-closing__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.strat-closing__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.strat-closing__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #94a3b8; /* Muted slate for "Why partner with" */
  margin-bottom: 24px;
  line-height: 1.2;
}

.text-white {
  color: #ffffff !important;
}

.strat-closing__text {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1; /* Light gray text */
  margin-bottom: 40px;
}

.strat-closing__text strong {
  color: #ffffff;
  font-weight: 600;
}

/* Button */
.btn-strat-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d4a373;
  color: #0f172a;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #d4a373;
}

.btn-strat-solid:hover {
  background: transparent;
  color: #d4a373;
  transform: translateY(-2px);
}

/* Background Abstract Pattern */
.strat-closing__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(212, 163, 115, 0.08) 0%, transparent 20%),
    radial-gradient(circle at 90% 90%, rgba(212, 163, 115, 0.05) 0%, transparent 20%);
  z-index: 1;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
  .strat-closing { padding: 60px 0; }
  .strat-closing__box { padding: 40px 24px; }
  .strat-closing__title { font-size: 28px; }
}

/* ========================================= */
/* SPC OVERLAP (The Requested Premium Design)*/
/* ========================================= */

.spc-overlap {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc; /* Clean background */
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Flex Wrapper for Overlap Layout */
.spc-overlap__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.spc-overlap__visual {
  width: 55%; /* Image takes up more than half */
  position: relative;
  z-index: 1;
}

.spc-overlap__img-holder {
  position: relative;
  border-radius: 4px; /* Sharp corners like the image */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 680px; /* Tall vertical image */
}

.spc-overlap__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dot Pattern */
.spc-overlap__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: -1;
}

/* --- Right Column: Overlapping Card --- */
.spc-overlap__card {
  width: 50%; /* Overlap width */
  margin-left: -5%; /* THE OVERLAP MAGIC */
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Header Typography */
.spc-overlap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.spc-overlap__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.spc-overlap__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Solutions List */
.spc-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.spc-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.spc-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.spc-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.spc-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip (Dark Bar) */
.spc-kpi-strip {
  background: #0f172a; /* Dark Navy */
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-left: 4px solid #d4a373; /* Gold accent left */
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.kpi-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.spc-overlap__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-spc-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-spc-gold:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-spc-link {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-spc-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .spc-overlap { padding: 60px 0; }
  
  .spc-overlap__wrapper {
    flex-direction: column;
  }
  
  .spc-overlap__visual {
    width: 100%;
    margin-bottom: -60px; /* Pull card up */
  }
  
  .spc-overlap__img-holder {
    height: 400px;
  }
  
  .spc-overlap__card {
    width: 92%;
    margin-left: 0; /* Center it */
    padding: 40px 30px;
  }

  .spc-overlap__title {
    font-size: 32px;
  }
  
  .spc-kpi-strip {
    padding: 20px;
  }
}

/* ========================================= */
/* IMPORT & EXPORT (Global Trade Grid)       */
/* ========================================= */

.ie-premium {
  padding: 100px 0 120px;
  background-color: #0b1220; /* Deep Navy Background */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

/* Optional Background Map Texture */
.ie-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Header */
.ie-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373; /* Gold */
  margin-bottom: 16px;
  border: 1px solid rgba(212, 163, 115, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
}

.ie-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.ie-premium__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #94a3b8; /* Slate Light */
  max-width: 800px;
  margin: 0 auto;
}

/* Card Design */
.ie-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.ie-card:hover {
  transform: translateY(-8px);
  border-bottom-color: #d4a373; /* Gold bottom accent on hover */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ie-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ie-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 163, 115, 0.15); /* Gold tint */
  color: #d4a373;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.ie-card:hover .ie-card__icon {
  background: #0f172a; /* Navy on hover */
  color: #ffffff;
}

.ie-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #e2e8f0; /* Subtle grey number */
  line-height: 1;
}

.ie-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.ie-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .ie-premium { padding: 60px 0; }
  .ie-card { padding: 30px 24px; }
}
/* ========================================= */
/* SPC FINAL (Closing Section)               */
/* ========================================= */

.spc-final {
  padding: 100px 0 120px;
  background-color: #ffffff; /* Clean white background */
  font-family: "Open Sans", sans-serif;
}

/* Icon */
.spc-final__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Typography */
.spc-final__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 30px;
}

.text-gold {
  color: #d4a373;
}

.spc-final__body {
  max-width: 800px;
  margin: 0 auto 40px;
}

.spc-final__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 20px;
}

.spc-final__text {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 0;
}

/* Button */
.spc-final__actions {
  margin-top: 30px;
}

.btn-spc-final {
  display: inline-flex;
  align-items: center;
  background: #0f172a; /* Navy */
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

.btn-spc-final:hover {
  background: #d4a373; /* Gold Hover */
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .spc-final { padding: 80px 0; }
  .spc-final__title { font-size: 28px; }
}

/* ========================================= */
/* IT CONSULTING OVERLAP (Tech Nexus Style)  */
/* ========================================= */

.it-overlap {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Flex Wrapper */
.it-overlap__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.it-overlap__visual {
  width: 55%;
  position: relative;
  z-index: 1;
}

.it-overlap__img-holder {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 680px; /* Tall vertical image */
}

.it-overlap__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tech Pattern (Grid dots) */
.it-overlap__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: -1;
}

/* --- Right Column: Overlapping Card --- */
.it-overlap__card {
  width: 50%;
  margin-left: -5%; /* THE OVERLAP MAGIC */
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Typography */
.it-overlap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.it-overlap__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.it-overlap__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Solutions List */
.it-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.it-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.it-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.it-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.it-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip */
.it-kpi-strip {
  background: #0f172a; /* Dark Navy */
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-left: 4px solid #d4a373;
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.kpi-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.it-overlap__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-it-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-it-gold:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-it-link {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-it-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .it-overlap { padding: 60px 0; }
  
  .it-overlap__wrapper {
    flex-direction: column;
  }
  
  .it-overlap__visual {
    width: 100%;
    margin-bottom: -60px;
  }
  
  .it-overlap__img-holder {
    height: 400px;
  }
  
  .it-overlap__card {
    width: 92%;
    margin-left: 0;
    padding: 40px 30px;
  }

  .it-overlap__title {
    font-size: 32px;
  }
  
  .it-kpi-strip {
    padding: 20px;
  }
}

/* ========================================= */
/* IT DETAILED (Services & Innovation)       */
/* ========================================= */

.it-detailed {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Header */
.it-detailed__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
}

.it-detailed__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.it-detailed__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* Feature Cards (Triad) */
.it-feature {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.it-feature:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(212, 163, 115, 0.3);
}

.it-feature__icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.it-feature:hover .it-feature__icon {
  background: #0f172a;
  color: #d4a373;
}

.it-feature__title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.it-feature__text {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Transformation Block (Dark) */
.it-transform-block {
  margin-top: 40px;
  background: #0f172a; /* Navy */
  border-radius: 20px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Background Abstract */
.it-transform-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 50%, rgba(212, 163, 115, 0.15), transparent 60%);
  pointer-events: none;
}

.it-transform__title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.it-transform__lead {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.it-transform__text {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1; /* Light Slate */
  margin-bottom: 30px;
}

.it-transform__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.it-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.it-check i {
  color: #d4a373; /* Gold */
  font-size: 16px;
}

.it-check span {
  font-weight: 600;
  font-size: 14px;
  color: #e2e8f0;
}

/* Visual Side (Abstract Cards) */
.it-transform__visual {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center; /* Center cards on mobile, adjust for desktop if needed */
}

.tech-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 320px;
}

.tech-card--alt {
  margin-left: 40px; /* Offset effect */
  background: rgba(255, 255, 255, 0.05);
}

.tech-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 4px;
  font-weight: 700;
}

.tech-val {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.tech-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.tech-fill {
  height: 100%;
  background: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .it-detailed { padding: 60px 0; }
  .it-transform-block { padding: 40px 24px; }
  .it-transform__visual { margin-top: 40px; }
  .tech-card--alt { margin-left: 0; }
}

/* ========================================= */
/* CYBERSECURITY DEFENSE GRID                */
/* ========================================= */

.cyber-premium {
  padding: 100px 0 120px;
  background-color: #0b1120; /* Ultra Dark Navy */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Grid Pattern */
.cyber-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Header */
.cyber-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 163, 115, 0.3);
  padding: 6px 14px;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.cyber-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.text-gold {
  color: #d4a373;
}

.cyber-premium__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Card Styling */
.cyber-card {
  background: rgba(15, 23, 42, 0.6); /* Semi-transparent Navy */
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 30px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Hover Effect: Border Glow */
.cyber-card:hover {
  border-color: #d4a373;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  background: rgba(15, 23, 42, 0.9);
}

/* Top Section of Card */
.cyber-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.cyber-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 163, 115, 0.1);
  color: #d4a373;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(212, 163, 115, 0.2);
  transition: all 0.3s ease;
}

.cyber-card:hover .cyber-card__icon {
  background: #d4a373;
  color: #0f172a;
  box-shadow: 0 0 15px rgba(212, 163, 115, 0.4);
}

.cyber-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.cyber-card:hover .cyber-card__num {
  color: rgba(255, 255, 255, 0.3);
}

/* Content */
.cyber-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.cyber-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .cyber-premium { padding: 60px 0; }
  .cyber-card { padding: 30px 24px; }
}

/* ========================================= */
/* IT DASHBOARD (Support Services)           */
/* ========================================= */

.it-dashboard {
  padding: 100px 0 120px;
  background-color: #f1f5f9; /* Tech Gray Background */
  font-family: "Open Sans", sans-serif;
}

/* Header Area */
.it-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 20px;
}

.it-dash-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  display: block;
  margin-bottom: 10px;
}

.it-dash-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.it-dash-lead {
  font-size: 16px;
  color: #475569;
  max-width: 700px;
  margin-bottom: 0;
}

/* Status Indicator */
.it-dash-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.status-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f172a;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #10b981; /* Green */
  border-radius: 50%;
  display: inline-block;
}

.pulse {
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Card Design */
.it-dash-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  border: 1px solid transparent;
  overflow: hidden;
}

.it-dash-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(212, 163, 115, 0.3);
}

/* Top Accent Line */
.card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0f172a; /* Navy Default */
  transition: background 0.3s ease;
}

.it-dash-card:hover .card-line {
  background: #d4a373; /* Gold on Hover */
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.it-dash-card:hover .card-icon {
  background: #0f172a;
  color: #ffffff;
}

.card-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .it-dashboard { padding: 60px 0; }
  .it-dash-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ========================================= */
/* CUSTOM DEV BLUEPRINT (Dark Tech Design)   */
/* ========================================= */

.dev-blueprint {
  padding: 100px 0 120px;
  background-color: #0f172a; /* Deep Navy Background */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Effect (Subtle Glow) */
.dev-blueprint::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15), transparent 70%);
  pointer-events: none;
}

/* Header */
.dev-blueprint__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
}

.dev-blueprint__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.dev-blueprint__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

/* Cards */
.dev-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dev-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 163, 115, 0.4); /* Gold Border on Hover */
  transform: translateY(-5px);
}

/* Specific highlight for the Enterprise Card */
.dev-card--highlight {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border-top: 4px solid #d4a373;
}

.dev-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 163, 115, 0.1);
  color: #d4a373;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.dev-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.dev-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* Tags List */
.dev-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dev-tags li {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 4px;
}

/* Enterprise Systems List */
.dev-systems-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sys-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sys-abbr {
  font-weight: 800;
  color: #d4a373;
  font-size: 13px;
  width: 40px;
}

.sys-name {
  font-size: 13px;
  color: #ffffff;
}

/* Bottom Process Strip */
.dev-process {
  margin-top: 60px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
}

.step-name {
  font-size: 14px;
  font-weight: 600;
  color: #d4a373;
}

.step-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .dev-blueprint { padding: 60px 0; }
  
  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
  }
  
  .step-line {
    display: none; /* Hide lines on mobile */
  }
}

/* ========================================= */
/* IT FINAL (Closing Section)                */
/* ========================================= */

.it-final {
  padding: 100px 0 120px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Icon */
.it-final__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(15, 23, 42, 0.03);
  color: #0f172a;
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Typography */
.it-final__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 30px;
}

.text-gold {
  color: #d4a373;
}

.it-final__body {
  max-width: 800px;
  margin: 0 auto 50px;
}

.it-final__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 20px;
}

.it-final__text {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 0;
}

/* Actions Area */
.it-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Primary Button */
.btn-it-final {
  display: inline-flex;
  align-items: center;
  background: #0f172a; /* Navy */
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

.btn-it-final:hover {
  background: #d4a373; /* Gold */
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.25);
}

/* Partner Box (BOSIT Link) */
.it-partner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  width: 100%;
  max-width: 400px;
}

.partner-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 700;
}

.link-bosit {
  font-size: 15px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-bosit strong {
  font-weight: 800;
  color: #0f172a;
}

.link-bosit i {
  font-size: 12px;
  color: #d4a373;
}

.link-bosit:hover {
  color: #d4a373;
}

.link-bosit:hover strong {
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .it-final { padding: 80px 0; }
  .it-final__title { font-size: 28px; }
}

/* ========================================= */
/* HR CONSULTING INTRO (Talent Ecosystem)    */
/* ========================================= */

.hr-intro {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* --- Content Side --- */
.hr-intro__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172a; /* Navy */
  margin-bottom: 16px;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.hr-intro__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.hr-intro__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
  margin-bottom: 24px;
}

.hr-intro__body p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 30px;
}

/* Insight Box */
.hr-intro__insight {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-left: 10px;
}

.insight-line {
  width: 4px;
  background: #d4a373;
  border-radius: 2px;
  flex-shrink: 0;
}

.insight-content {
  font-size: 16px;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
}

.insight-content strong {
  display: block;
  font-style: normal;
  color: #0f172a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* Button */
.btn-hr-primary {
  display: inline-flex;
  align-items: center;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.btn-hr-primary:hover {
  background: #d4a373;
  color: #0f172a;
  transform: translateY(-2px);
}

/* --- Visual Side --- */
.hr-intro__visual {
  position: relative;
  padding-top: 30px;
  padding-right: 30px;
}

.hr-img-holder {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  z-index: 1;
  min-height: 480px;
}

.hr-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay Gradient */
.hr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.05));
}

/* Floating "Talent Specs" Card */
.hr-float-card {
  position: absolute;
  bottom: -30px;
  right: 0; /* Align right */
  background: #0f172a; /* Navy */
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
  z-index: 2;
  min-width: 240px;
  border-top: 4px solid #d4a373;
}

.float-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}

.float-head i {
  color: #d4a373;
}

.float-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.float-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.float-list li:last-child {
  margin-bottom: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #334155;
}

.dot.active {
  background: #d4a373;
  box-shadow: 0 0 10px rgba(212, 163, 115, 0.5);
}

/* Pattern */
.hr-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-image: 
    radial-gradient(rgba(15, 23, 42, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .hr-intro { padding: 60px 0; }
  
  .hr-intro__visual {
    padding: 0;
    margin-top: 50px;
  }
  
  .hr-img-holder {
    min-height: 350px;
  }
  
  .hr-float-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
}


/* ========================================= */
/* HR CONSULTING OVERLAP (Premium Design)    */
/* ========================================= */

.hr-overlap {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Flex Wrapper */
.hr-overlap__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.hr-overlap__visual {
  width: 55%;
  position: relative;
  z-index: 1;
}

.hr-overlap__img-holder {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 680px; /* Tall vertical image */
}

.hr-overlap__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HR Pattern (Organic dots) */
.hr-overlap__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: -1;
}

/* --- Right Column: Overlapping Card --- */
.hr-overlap__card {
  width: 50%;
  margin-left: -5%; /* THE OVERLAP MAGIC */
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Typography */
.hr-overlap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.hr-overlap__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.hr-overlap__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Solutions List */
.hr-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.hr-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.hr-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.hr-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.hr-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip */
.hr-kpi-strip {
  background: #0f172a; /* Dark Navy */
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-left: 4px solid #d4a373;
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.kpi-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.hr-overlap__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-hr-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-hr-gold:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-hr-link {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-hr-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .hr-overlap { padding: 60px 0; }
  
  .hr-overlap__wrapper {
    flex-direction: column;
  }
  
  .hr-overlap__visual {
    width: 100%;
    margin-bottom: -60px;
  }
  
  .hr-overlap__img-holder {
    height: 400px;
  }
  
  .hr-overlap__card {
    width: 92%;
    margin-left: 0;
    padding: 40px 30px;
  }

  .hr-overlap__title {
    font-size: 32px;
  }
  
  .hr-kpi-strip {
    padding: 20px;
  }
}

/* ========================================= */
/* HR DETAILED (Workforce Blueprint)         */
/* ========================================= */

.hr-detailed {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Header */
.hr-detailed__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 14px;
  border-bottom: 2px solid #d4a373;
}

.hr-detailed__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hr-detailed__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* Cards */
.hr-card {
  padding: 40px;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hr-card:hover {
  transform: translateY(-5px);
}

/* Light Card Style */
.hr-card--light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

/* Dark Card Style */
.hr-card--dark {
  background: #0f172a; /* Navy */
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.hr-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.hr-card--light .hr-card__icon {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hr-card--dark .hr-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #d4a373;
}

.hr-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hr-card__text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hr-card--light .hr-card__title { color: #0f172a; }
.hr-card--light .hr-card__text { color: #64748b; }

/* List Styling (Light Card) */
.hr-list-wrap {
  margin-top: auto; /* Push to bottom */
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.03);
}

.hr-list-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.hr-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hr-check-list li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hr-check-list li i {
  color: #d4a373;
}

/* Methods Grid (Dark Card) */
.hr-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: auto;
}

.method-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.method-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.method-icon {
  color: #d4a373;
  font-size: 16px;
}

.method-name {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

/* Impact Strip */
.hr-impact {
  background: #d4a373; /* Gold Background */
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 30px rgba(212, 163, 115, 0.2);
}

.hr-impact__head {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hr-impact__desc {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  opacity: 0.9;
  margin: 0;
}

.btn-hr-impact {
  background: #0f172a;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}

.btn-hr-impact:hover {
  transform: translateX(5px);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .hr-detailed { padding: 60px 0; }
  .hr-impact {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ========================================= */
/* HR PILLARS (Services Grid)                */
/* ========================================= */

.hr-pillars {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Very light gray */
  font-family: "Open Sans", sans-serif;
}

/* Header Elements */
.hr-pillars__heading {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.hr-pillars__divider {
  width: 50px;
  height: 3px;
  background: #d4a373;
  margin: 0 auto;
  border-radius: 2px;
}

.text-gold {
  color: #d4a373;
}

/* Card Styling */
.hr-pillar-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Top Gold Line Animation */
.hr-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d4a373;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hr-pillar-card:hover::before {
  transform: scaleX(1);
}

.hr-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Card Header */
.hr-pillar-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hr-pillar-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(15, 23, 42, 0.03);
  color: #0f172a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.hr-pillar-card:hover .hr-pillar-card__icon {
  background: #0f172a;
  color: #d4a373;
}

.hr-pillar-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #e2e8f0; /* Subtle number */
  line-height: 1;
}

.hr-pillar-card:hover .hr-pillar-card__num {
  color: rgba(212, 163, 115, 0.4); /* Gold hint on hover */
}

/* Content */
.hr-pillar-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.hr-pillar-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Bullet Points / Details at bottom */
.hr-pillar-card__details {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hr-pillar-card__details span {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hr-pillar-card__details span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d4a373;
  border-radius: 50%;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .hr-pillars { padding: 60px 0; }
  .hr-pillar-card { padding: 30px 24px; }
}

/* ========================================= */
/* TRAINING GRID (Academy Style)             */
/* ========================================= */

.train-grid {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Header */
.train-grid__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.train-grid__divider {
  width: 60px;
  height: 3px;
  background: #d4a373;
  margin: 0 auto 16px auto;
}

.train-grid__lead {
  font-size: 16px;
  color: #64748b;
}

/* Card Styling */
.train-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.train-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border-color: transparent;
}

/* Bottom Border Accent */
.train-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d4a373;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.train-card:hover::after {
  transform: scaleX(1);
}

.train-card__icon {
  width: 50px;
  height: 50px;
  background: #f8fafc;
  color: #0f172a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.train-card:hover .train-card__icon {
  background: #0f172a;
  color: #d4a373;
}

.train-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.train-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .train-grid { padding: 60px 0; }
  .train-card { padding: 30px 24px; }
}

/* ========================================= */
/* HR FINAL (Closing Section)                */
/* ========================================= */

.hr-final {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Matches previous section */
  font-family: "Open Sans", sans-serif;
}

.hr-final__box {
  background: #0f172a; /* Deep Navy */
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
  color: #ffffff;
}

/* Icon Badge */
.hr-final__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(212, 163, 115, 0.1);
  color: #d4a373;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 163, 115, 0.3);
  position: relative;
  z-index: 2;
}

.hr-final__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.text-gold {
  color: #d4a373;
}

.hr-final__body {
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.hr-final__body p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.hr-final__body p:last-child {
  margin-bottom: 0;
}

/* Button */
.btn-hr-final {
  display: inline-flex;
  align-items: center;
  background: #d4a373;
  color: #0f172a;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}

.btn-hr-final:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
}

/* Background Pattern */
.hr-final__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(212, 163, 115, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(212, 163, 115, 0.05) 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
  .hr-final { padding: 60px 0; }
  .hr-final__box { padding: 40px 24px; }
}

/* ========================================= */
/* BUSINESS DEV OVERLAP (Premium Style)      */
/* ========================================= */

.bd-overlap {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Flex Wrapper */
.bd-overlap__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.bd-overlap__visual {
  width: 55%;
  position: relative;
  z-index: 1;
}

.bd-overlap__img-holder {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 680px; /* Tall vertical image */
}

.bd-overlap__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pattern (Grid dots) */
.bd-overlap__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: -1;
}

/* --- Right Column: Overlapping Card --- */
.bd-overlap__card {
  width: 50%;
  margin-left: -5%; /* THE OVERLAP MAGIC */
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Typography */
.bd-overlap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.bd-overlap__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.bd-overlap__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Solutions List */
.bd-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.bd-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bd-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.bd-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.bd-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip */
.bd-kpi-strip {
  background: #0f172a; /* Dark Navy */
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-left: 4px solid #d4a373;
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.kpi-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.bd-overlap__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-bd-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-bd-gold:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-bd-link {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-bd-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .bd-overlap { padding: 60px 0; }
  
  .bd-overlap__wrapper {
    flex-direction: column;
  }
  
  .bd-overlap__visual {
    width: 100%;
    margin-bottom: -60px;
  }
  
  .bd-overlap__img-holder {
    height: 400px;
  }
  
  .bd-overlap__card {
    width: 92%;
    margin-left: 0;
    padding: 40px 30px;
  }

  .bd-overlap__title {
    font-size: 32px;
  }
  
  .bd-kpi-strip {
    padding: 20px;
  }
}
/* ========================================= */
/* BUSINESS DEVELOPMENT (Strategic Split)    */
/* ========================================= */

.bd-premium {
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* --- Left Side: Dark Rail --- */
.bd-rail {
  background-color: #0f172a; /* Deep Navy */
  height: 100%;
  padding: 80px 60px;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Background Pattern */
.bd-rail__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(212, 163, 115, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.bd-rail__content {
  position: relative;
  z-index: 1;
}

.bd-rail__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 163, 115, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
}

.bd-rail__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.bd-rail__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #cbd5e1; /* Light Slate */
  margin-bottom: 40px;
  max-width: 90%;
}

/* Metrics Grid */
.bd-rail__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 50px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 4px;
  font-weight: 700;
}

.metric-val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* Actions */
.bd-rail__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-bd-solid {
  background: #d4a373;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-bd-solid:hover {
  background: #ffffff;
  color: #0f172a;
}

.btn-bd-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-bd-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* --- Right Side: Content --- */
.bd-content {
  padding: 80px 60px;
  background-color: #ffffff;
}

.bd-text-lg {
  font-size: 18px;
  line-height: 1.8;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 24px;
}

.bd-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Pillars List */
.bd-pillars {
  margin-top: 40px;
  border-top: 1px solid #f1f5f9;
  padding-top: 40px;
}

.bd-pillars__title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: #94a3b8;
  margin-bottom: 30px;
}

.bd-pillar-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.bd-pillar-item:last-child {
  margin-bottom: 0;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.bd-pillar-item:hover .pillar-icon {
  background: #0f172a;
  color: #d4a373;
}

.pillar-info h5 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.pillar-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .bd-rail { padding: 60px 30px; }
  .bd-content { padding: 60px 30px; }
}

/* ========================================= */
/* TRUSTED PARTNER (Corporate Seal Design)   */
/* ========================================= */

.trust-corp {
  padding: 100px 0;
  background-color: #0b1120; /* Ultra Dark Navy */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Pattern (Subtle Map/Grid) */
.trust-corp__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* --- Left Column: Narrative --- */
.trust-corp__content {
  position: relative;
  z-index: 1;
}

.trust-corp__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 163, 115, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
}

.trust-corp__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.text-gold {
  color: #d4a373;
}

.trust-corp__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1; /* Light Slate */
  margin-bottom: 24px;
  max-width: 90%;
}

.trust-corp__text {
  font-size: 15px;
  line-height: 1.8;
  color: #94a3b8; /* Darker Slate */
  margin-bottom: 40px;
  max-width: 90%;
}

/* Footer Note */
.trust-corp__foot {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.trust-corp__foot i {
  color: #d4a373;
  font-size: 16px;
  margin-top: 2px;
}

.trust-corp__foot strong {
  color: #ffffff;
}

/* --- Right Column: Commitment Card --- */
.trust-card {
  background: rgba(255, 255, 255, 0.03); /* Glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.trust-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.trust-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.trust-card__icon {
  font-size: 24px;
  color: #d4a373;
}

/* The List */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.trust-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #d4a373;
  color: #0f172a;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-list li span:last-child {
  font-size: 15px;
  color: #e2e8f0;
  line-height: 1.5;
}

/* Actions */
.trust-card__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-trust-gold {
  display: block;
  text-align: center;
  background: #d4a373;
  color: #0f172a;
  padding: 14px 0;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-trust-gold:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
}

.btn-trust-link {
  display: block;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-trust-link:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .trust-corp { padding: 60px 0; }
  .trust-card { padding: 30px; }
  .trust-corp__title { font-size: 32px; }
}

/* ========================================= */
/* HR LEADERSHIP (Split with Quote)          */
/* ========================================= */

.hr-leader {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* --- Visual Side (Left) --- */
.hr-leader__visual {
  position: relative;
  margin-right: 20px; /* Space for the floating card */
  margin-bottom: 40px; /* Space for mobile */
}

.hr-leader__img-holder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  position: relative;
  z-index: 1;
}

.hr-leader__img-holder img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hr-leader__visual:hover .hr-leader__img-holder img {
  transform: scale(1.03);
}

/* Floating Quote Card */
.hr-leader__quote-card {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: #0f172a; /* Deep Navy */
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  max-width: 280px;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.3);
  border-bottom: 4px solid #d4a373;
}

.quote-icon {
  font-size: 24px;
  color: #d4a373;
  margin-bottom: 12px;
}

.quote-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #e2e8f0;
}

/* --- Content Side (Right) --- */
.hr-leader__content {
  padding-left: 20px;
}

.hr-leader__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
}

.hr-leader__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.hr-leader__lead {
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.7;
}

.hr-leader__text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Pillars List */
.hr-leader__pillars {
  display: flex;
  flex-direction: column;
  gap: 0; /* Border separation */
  margin-bottom: 40px;
}

.leader-pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.leader-pillar:last-child {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.leader-pillar:hover {
  background: linear-gradient(90deg, rgba(212, 163, 115, 0.05), transparent);
  padding-left: 15px; /* Slide effect */
}

.pillar-num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #d4a373; /* Gold numbers */
  line-height: 1;
  opacity: 0.8;
}

.pillar-info h5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.pillar-info p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Button */
.btn-leader-gold {
  display: inline-flex;
  align-items: center;
  background: #0f172a; /* Navy Button */
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.btn-leader-gold:hover {
  background: #d4a373; /* Gold hover */
  color: #0f172a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .hr-leader { padding: 60px 0; }
  
  .hr-leader__visual {
    margin-right: 0;
    margin-bottom: 60px; /* Space for the floating card */
  }
  
  .hr-leader__quote-card {
    right: 0;
    left: 0;
    bottom: -40px;
    margin: 0 auto;
    width: 90%;
  }
  
  .hr-leader__content {
    padding-left: 0;
  }
}

/* ========================================= */
/* EXECUTION LIGHT (Interstitial Section)    */
/* ========================================= */

.exec-light {
  padding: 100px 0;
  background-color: #ffffff; /* Pure White Background */
  font-family: "Open Sans", sans-serif;
  position: relative;
}

/* Header Elements */
.exec-light__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 16px;
  border-bottom: 2px solid #d4a373;
  padding-bottom: 4px;
}

.exec-light__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #0f172a;
}

.exec-light__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  max-width: 750px;
  margin: 0 auto;
}

/* Card Styling */
.exec-card {
  background: #ffffff; /* White on White */
  padding: 40px 30px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); /* Very subtle shadow */
  position: relative;
  overflow: hidden;
}

.exec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08); /* Deeper shadow on hover */
  border-color: transparent;
}

/* Hover Accent Line (Top) */
.exec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d4a373;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.exec-card:hover::before {
  transform: scaleX(1);
}

/* Card Header Components */
.exec-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.exec-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #e2e8f0; /* Very light gray number */
  line-height: 1;
  transition: color 0.3s;
}

.exec-card:hover .exec-card__num {
  color: #0f172a; /* Darkens on hover */
}

.exec-card__line {
  flex-grow: 1;
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
}

.exec-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.exec-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Bottom Metric Strip */
.exec-light__metric {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 16px 30px;
  border-radius: 50px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.metric-icon {
  color: #d4a373;
  font-size: 18px;
}

.metric-text {
  font-size: 14px;
  color: #475569;
}

.metric-text strong {
  color: #0f172a;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
  .exec-light { padding: 60px 0; }
  .exec-card { padding: 30px; }
}

/* ========================================= */
/* INVESTMENT OVERLAP (Global Capital Style) */
/* ========================================= */

.invest-overlap {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Flex Wrapper */
.invest-overlap__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.invest-overlap__visual {
  width: 55%;
  position: relative;
  z-index: 1;
}

.invest-overlap__img-holder {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 680px; /* Tall vertical image */
}

.invest-overlap__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pattern */
.invest-overlap__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: -1;
}

/* --- Right Column: Overlapping Card --- */
.invest-overlap__card {
  width: 50%;
  margin-left: -5%; /* THE OVERLAP MAGIC */
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Typography */
.invest-overlap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.invest-overlap__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.invest-overlap__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Solutions List */
.invest-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.invest-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.invest-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.invest-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.invest-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip */
.invest-kpi-strip {
  background: #0f172a; /* Dark Navy */
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-left: 4px solid #d4a373;
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.kpi-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.invest-overlap__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-invest-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-invest-gold:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-invest-link {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-invest-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .invest-overlap { padding: 60px 0; }
  
  .invest-overlap__wrapper {
    flex-direction: column;
  }
  
  .invest-overlap__visual {
    width: 100%;
    margin-bottom: -60px;
  }
  
  .invest-overlap__img-holder {
    height: 400px;
  }
  
  .invest-overlap__card {
    width: 92%;
    margin-left: 0;
    padding: 40px 30px;
  }

  .invest-overlap__title {
    font-size: 32px;
  }
  
  .invest-kpi-strip {
    padding: 20px;
  }
}

/* ========================================= */
/* INVESTMENT DETAILED (Thesis Design)       */
/* ========================================= */

.invest-detailed {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Header */
.invest-detailed__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 14px;
  border-bottom: 2px solid #d4a373;
}

.invest-detailed__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.invest-detailed__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* Narrative Side */
.invest-narrative__title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.invest-narrative p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

/* Real Estate Box */
.invest-highlight {
  display: flex;
  gap: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 12px;
  margin-top: 30px;
  border-left: 4px solid #d4a373;
}

.highlight-icon {
  font-size: 24px;
  color: #d4a373;
  flex-shrink: 0;
  margin-top: 4px;
}

.highlight-content h5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.highlight-content p {
  font-size: 14px;
  margin: 0;
  color: #64748b;
}

/* Services Stack (Right Side) */
.invest-stack {
  background: #0f172a; /* Navy */
  padding: 30px;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.stack-header {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: #d4a373;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.stack-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.stack-item:last-child {
  margin-bottom: 0;
}

.stack-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a373;
  flex-shrink: 0;
}

.stack-info h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.stack-info p {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

/* Bottom Strip */
.invest-strip {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.invest-strip__text {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  max-width: 70%;
}

.btn-invest-strip {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-invest-strip:hover {
  background: #d4a373;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 991px) {
  .invest-detailed { padding: 60px 0; }
  .invest-strip {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .invest-strip__text { max-width: 100%; }
}

/* ========================================= */
/* INVESTMENT HORIZON (Dark Section)         */
/* ========================================= */

.invest-horizon {
  padding: 100px 0;
  background-color: #0f172a; /* Deep Navy */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

/* Optional: Subtle gradient overlay */
.invest-horizon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(212, 163, 115, 0.08), transparent 60%);
  pointer-events: none;
}

/* --- Left Column --- */
.invest-horizon__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 12px;
  opacity: 0.9;
}

.invest-horizon__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.invest-horizon__bar {
  width: 60px;
  height: 4px;
  background: #d4a373;
  border-radius: 2px;
  margin-bottom: 30px;
}

/* Focus List */
.invest-focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.invest-focus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #e2e8f0;
}

.invest-focus-list li i {
  color: #d4a373;
  font-size: 18px;
}

/* --- Right Column --- */
.invest-horizon__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 30px;
}

.invest-horizon__box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  color: #cbd5e1; /* Light Slate text */
  font-size: 15px;
  line-height: 1.7;
}

.invest-horizon__box p {
  margin-bottom: 16px;
}

.invest-horizon__box p:last-child {
  margin-bottom: 0;
}

.text-white {
  color: #ffffff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .invest-horizon { padding: 60px 0; }
  .invest-horizon__title { font-size: 32px; }
  .invest-horizon__box { padding: 20px; }
}

/* ========================================= */
/* IT CLOSING (System Command Design)        */
/* ========================================= */

.it-closing {
  padding: 80px 0 100px;
  background-color: #ffffff; /* Clean outer background */
  font-family: "Open Sans", sans-serif;
}

.it-closing__card {
  background: #0f172a; /* Deep Navy */
  border-radius: 20px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Circuit/Tech Pattern Background */
.it-closing__circuit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

/* Vignette overlay for depth */
.it-closing__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 40%, #0f172a 100%);
  z-index: 1;
  pointer-events: none;
}

.it-closing__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.it-closing__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
  background: rgba(212, 163, 115, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(212, 163, 115, 0.2);
}

.it-closing__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}

.text-gold {
  color: #d4a373;
}

.it-closing__text {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1; /* Light Slate */
  margin-bottom: 40px;
}

/* Button */
.btn-it-final {
  display: inline-flex;
  align-items: center;
  background: #d4a373;
  color: #0f172a;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.3); /* Glow effect */
}

.btn-it-final:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .it-closing { padding: 60px 0; }
  .it-closing__card { padding: 50px 24px; }
}

/* ========================================= */
/* STEEL OVERLAP (Premium Industrial Design) */
/* ========================================= */

.steel-overlap {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Flex Wrapper */
.steel-overlap__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.steel-overlap__visual {
  width: 55%;
  position: relative;
  z-index: 1;
}

.steel-overlap__img-holder {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 680px; /* Tall vertical image */
}

.steel-overlap__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pattern (Industrial grid dots) */
.steel-overlap__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: -1;
}

/* --- Right Column: Overlapping Card --- */
.steel-overlap__card {
  width: 50%;
  margin-left: -5%; /* THE OVERLAP MAGIC */
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Typography */
.steel-overlap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.steel-overlap__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.steel-overlap__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Solutions List */
.steel-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.steel-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.steel-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.steel-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.steel-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip */
.steel-kpi-strip {
  background: #0f172a; /* Dark Navy */
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-left: 4px solid #d4a373;
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.kpi-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.steel-overlap__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-steel-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-steel-gold:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-steel-link {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-steel-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .steel-overlap { padding: 60px 0; }
  
  .steel-overlap__wrapper {
    flex-direction: column;
  }
  
  .steel-overlap__visual {
    width: 100%;
    margin-bottom: -60px;
  }
  
  .steel-overlap__img-holder {
    height: 400px;
  }
  
  .steel-overlap__card {
    width: 92%;
    margin-left: 0;
    padding: 40px 30px;
  }

  .steel-overlap__title {
    font-size: 32px;
  }
  
  .steel-kpi-strip {
    padding: 20px;
  }
}

/* ========================================= */
/* STEEL DETAILED (Industrial Blueprint)     */
/* ========================================= */

.steel-detailed {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Header */
.steel-detailed__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 14px;
  border-bottom: 2px solid #d4a373;
}

.steel-detailed__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.steel-detailed__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Side */
.steel-content__heading {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.steel-content__text {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

/* Check List */
.steel-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.steel-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 600;
}

.steel-check-list li i {
  color: #d4a373;
  font-size: 14px;
}

/* Specialized Card (Dark) */
.steel-spec-card {
  background: #0f172a; /* Navy */
  border-radius: 16px;
  padding: 30px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.steel-spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 100% 0%, rgba(212, 163, 115, 0.15), transparent 70%);
}

.spec-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.spec-head i {
  font-size: 20px;
  color: #d4a373;
}

.spec-head span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-body p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-tags span {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
}

/* Conclusion Box */
.steel-conclusion {
  background: #f8fafc;
  border-left: 4px solid #0f172a;
  padding: 24px;
  border-radius: 0 8px 8px 0;
}

.steel-conclusion p {
  margin: 0;
  font-size: 16px;
  color: #334155;
}

/* Responsive */
@media (max-width: 991px) {
  .steel-detailed { padding: 60px 0; }
  .steel-spec-card { margin-top: 20px; }
}

/* ========================================= */
/* STEEL SERVICES GRID (Industrial Premium)  */
/* ========================================= */

.steel-services {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Light industrial gray */
  font-family: "Open Sans", sans-serif;
}

/* Card Styling */
.steel-srv-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

/* Hover Effect: Technical Lift */
.steel-srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(212, 163, 115, 0.4);
}

/* Top Accent Line */
.steel-srv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0f172a; /* Navy Default */
  transform: scaleX(0.1);
  transform-origin: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.steel-srv-card:hover::before {
  transform: scaleX(1);
  background: #d4a373; /* Gold on Hover */
}

/* Header: Icon & Number */
.steel-srv-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.steel-srv-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  border-radius: 4px; /* Square/Industrial look */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.steel-srv-card:hover .steel-srv-card__icon {
  background: #0f172a;
  color: #ffffff;
}

.steel-srv-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
}

.steel-srv-card:hover .steel-srv-card__num {
  color: rgba(212, 163, 115, 0.3);
}

/* Text Content */
.steel-srv-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.steel-srv-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .steel-services { padding: 60px 0; }
  .steel-srv-card { padding: 30px 24px; }
}
/* ========================================= */
/* STEEL FINAL (Closing Section)             */
/* ========================================= */

.steel-final {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

.steel-final__card {
  background: #0f172a; /* Deep Navy */
  border-radius: 16px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  color: #ffffff;
}

/* Background Abstract (Girders/Structure) */
.steel-final__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
  z-index: 0;
}

/* Content Side */
.steel-final__content {
  position: relative;
  z-index: 1;
}

.steel-final__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 163, 115, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
}

.steel-final__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.steel-final__lead {
  font-size: 17px;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
}

.steel-final__text {
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8; /* Slate text */
  margin-bottom: 30px;
}

/* Primary Button */
.btn-steel-final {
  display: inline-flex;
  align-items: center;
  background: #d4a373;
  color: #0f172a;
  padding: 14px 32px;
  border-radius: 4px; /* Industrial square corners */
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-steel-final:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
}

/* Right Side: Resource Box */
.steel-resource-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #d4a373;
}

.res-icon {
  font-size: 24px;
  color: #d4a373;
  margin-bottom: 16px;
}

.res-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.res-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.res-link {
  display: block;
  background: #ffffff;
  color: #0f172a;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.res-link:hover {
  background: #f1f5f9;
}

/* Responsive */
@media (max-width: 991px) {
  .steel-final { padding: 60px 0; }
  .steel-final__card { padding: 40px 24px; }
  .steel-resource-box { margin-top: 20px; }
}

/* ========================================= */
/* STEEL CATALOG (Product Grid)              */
/* ========================================= */

.steel-catalog {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Light Gray Background */
  font-family: "Open Sans", sans-serif;
}

/* Header */
.steel-catalog__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
}

.steel-catalog__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.text-gold {
  color: #d4a373;
}

.steel-catalog__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Product Card */
.prod-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hover Effect */
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
  border-color: #d4a373; /* Gold Border */
}

/* Corner Accent on Hover */
.prod-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent #d4a373 transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prod-card:hover::after {
  opacity: 1;
}

/* Icon */
.prod-icon {
  width: 44px;
  height: 44px;
  background: #0f172a; /* Navy */
  color: #d4a373; /* Gold Icon */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.prod-card:hover .prod-icon {
  background: #d4a373;
  color: #0f172a;
}

/* Typography */
.prod-title {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.prod-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .steel-catalog { padding: 60px 0; }
  .prod-card { padding: 24px; }
}

/* ========================================= */
/* CONSULTING FINAL (Closing Section)        */
/* ========================================= */

.consult-final {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

.consult-final__card {
  background: #0f172a; /* Deep Navy */
  border-radius: 20px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Abstract Background Decoration */
.consult-final__deco {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Icon */
.consult-final__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4a373;
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Typography */
.consult-final__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  position: relative;
  z-index: 1;
}

.text-gold {
  color: #d4a373;
}

.consult-final__content {
  position: relative;
  z-index: 1;
  padding-left: 0;
}

@media (min-width: 768px) {
  .consult-final__content {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.consult-final__text {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1; /* Light Slate */
  margin-bottom: 20px;
}

/* Button */
.btn-consult-final {
  display: inline-flex;
  align-items: center;
  background: #d4a373;
  color: #0f172a;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-consult-final:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .consult-final { padding: 60px 0; }
  .consult-final__card { padding: 40px 24px; }
  .consult-final__icon { margin: 0 auto 20px auto; }
}

/* ========================================= */
/* 1. STEEL BLUEPRINT (Technical Detail)     */
/* ========================================= */

.steel-blueprint {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Header */
.steel-blueprint__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 14px;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 4px;
}

.steel-blueprint__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.steel-blueprint__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Wrapper Border */
.steel-blueprint__wrapper {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Left Content */
.blueprint-content {
  padding: 50px;
  background-color: #ffffff;
}

.blueprint-heading {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.blueprint-text {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 30px;
}

/* 2x2 Grid inside text */
.blueprint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.blueprint-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blueprint-item i {
  color: #d4a373;
  font-size: 18px;
}

.blueprint-item span {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.blueprint-note {
  font-size: 14px;
  color: #334155;
  background: #f8fafc;
  padding: 16px;
  border-left: 3px solid #d4a373;
  border-radius: 0 4px 4px 0;
}

/* Right Panel (Dark Specs) */
.specs-panel {
  background: #0f172a; /* Navy */
  padding: 50px;
  height: 100%;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.specs-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.5;
}

.specs-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.specs-head i {
  color: #d4a373;
  font-size: 20px;
}

.specs-head span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.specs-body p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 2;
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
}

.spec-label {
  font-size: 13px;
  color: #94a3b8;
}

.spec-val {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.specs-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 12px;
  color: #10b981;
  position: relative;
  z-index: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
}

/* ========================================= */
/* 2. STEEL MATRIX (Dark Service Cards)      */
/* ========================================= */

.steel-matrix {
  padding: 0 0 100px; /* Connects with previous section */
  background-color: #ffffff;
}

.matrix-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #cbd5e1;
  position: relative;
  display: inline-block;
}

.matrix-label::before, .matrix-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #e2e8f0;
}

.matrix-label::before { right: 100%; margin-right: 15px; }
.matrix-label::after { left: 100%; margin-left: 15px; }

/* Industrial Card (Dark) */
.ind-card {
  background: #1e293b; /* Slate Dark */
  border-radius: 12px;
  padding: 40px 30px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.ind-card:hover {
  transform: translateY(-8px);
  background: #0f172a; /* Darker on hover */
  border-bottom-color: #d4a373; /* Gold accent */
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

/* Header */
.ind-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ind-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #d4a373; /* Gold Icon */
}

.ind-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

/* Body */
.ind-card__body {
  flex-grow: 1;
}

.ind-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ind-card__text {
  font-size: 14px;
  color: #94a3b8; /* Light Slate text */
  line-height: 1.6;
}

/* Footer (Tag) */
.ind-card__footer {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.ind-card__footer span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4a373;
  font-weight: 700;
}

/* Highlight Card Variant */
.ind-card--highlight {
  background: #28364b; /* Slightly lighter */
}

/* Responsive */
@media (max-width: 991px) {
  .steel-blueprint { padding: 60px 0; }
  .blueprint-content { padding: 30px; }
  .specs-panel { padding: 30px; }
  .ind-card { padding: 30px; }
}

/* ========================================= */
/* STEEL CLOSING (Command Center Design)     */
/* ========================================= */

.steel-closing {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

.steel-closing__wrapper {
  background: #0f172a; /* Deep Navy */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  color: #ffffff;
}

/* Background Beam Effect */
.steel-closing__beam {
  position: absolute;
  top: 0;
  left: 30%;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

/* --- Left Side: Main Content --- */
.steel-closing__main {
  padding: 60px 50px;
  position: relative;
  z-index: 1;
}

.steel-closing__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 20px;
  background: rgba(212, 163, 115, 0.1);
  padding: 6px 14px;
  border-radius: 4px;
}

.steel-closing__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-gold {
  color: #d4a373;
}

.steel-closing__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 30px;
  max-width: 90%;
}

.steel-closing__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.steel-closing__list span {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steel-closing__list i {
  color: #d4a373;
  font-size: 12px;
}

/* Primary Button */
.btn-steel-solid {
  display: inline-flex;
  align-items: center;
  background: #d4a373;
  color: #0f172a;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #d4a373;
}

.btn-steel-solid:hover {
  background: transparent;
  color: #d4a373;
  transform: translateY(-2px);
}

/* --- Right Side: Sidebar (AllSteelPlus) --- */
.steel-closing__sidebar {
  background: #1e293b; /* Slightly lighter Navy/Charcoal */
  height: 100%;
  padding: 60px 40px;
  position: relative;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-content {
  position: relative;
  z-index: 2;
}

.sidebar-icon {
  font-size: 32px;
  color: #94a3b8;
  margin-bottom: 20px;
}

.sidebar-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.sidebar-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* Secondary Button */
.btn-steel-outline {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.btn-steel-outline:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Grid Pattern for Sidebar */
.sidebar-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .steel-closing { padding: 60px 0; }
  .steel-closing__main { padding: 40px 30px; }
  .steel-closing__sidebar { padding: 40px 30px; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.05); }
}
/* ========================================= */
/* STEEL CATALOG (Product Grid)              */
/* ========================================= */

.steel-catalog {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Light Gray Background */
  font-family: "Open Sans", sans-serif;
}

/* Header */
.steel-catalog__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
}

.steel-catalog__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.text-gold {
  color: #d4a373;
}

.steel-catalog__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Product Card */
.prod-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hover Effect */
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
  border-color: #d4a373; /* Gold Border */
}

/* Corner Accent on Hover */
.prod-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent #d4a373 transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prod-card:hover::after {
  opacity: 1;
}

/* Icon */
.prod-icon {
  width: 44px;
  height: 44px;
  background: #0f172a; /* Navy */
  color: #d4a373; /* Gold Icon */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.prod-card:hover .prod-icon {
  background: #d4a373;
  color: #0f172a;
}

/* Typography */
.prod-title {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.prod-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .steel-catalog { padding: 60px 0; }
  .prod-card { padding: 24px; }
}

/* ========================================= */
/* STEEL QUALITY (Certification Strip)       */
/* ========================================= */

.steel-quality {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
  font-family: "Open Sans", sans-serif;
}

.steel-quality__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.steel-quality__lead {
  font-size: 15px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Quality Card */
.qual-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8fafc;
  height: 100%;
}

.qual-card:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-5px);
}

.qual-icon {
  font-size: 32px;
  color: #d4a373; /* Gold */
  margin-bottom: 20px;
  display: inline-block;
}

.qual-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qual-text {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .steel-quality { padding: 60px 0; }
  .qual-card { padding: 20px; }
}
/* ========================================= */
/* PRODUCT DEV OVERLAP (Premium Design)      */
/* ========================================= */

.pd-overlap {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc; /* Clean background */
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Flex Wrapper */
.pd-overlap__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.pd-overlap__visual {
  width: 55%; /* Image takes up more than half */
  position: relative;
  z-index: 1;
}

.pd-overlap__img-holder {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 680px; /* Tall vertical image */
}

.pd-overlap__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pattern (Grid dots) */
.pd-overlap__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: -1;
}

/* --- Right Column: Overlapping Card --- */
.pd-overlap__card {
  width: 50%; /* Overlap width */
  margin-left: -5%; /* THE OVERLAP MAGIC */
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Header Typography */
.pd-overlap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.pd-overlap__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.pd-overlap__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Solutions List */
.pd-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.pd-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pd-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.pd-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.pd-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip (Dark Bar) */
.pd-kpi-strip {
  background: #0f172a; /* Dark Navy */
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-left: 4px solid #d4a373; /* Gold accent left */
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.kpi-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.pd-overlap__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-pd-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-pd-gold:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-pd-link {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-pd-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .pd-overlap { padding: 60px 0; }
  
  .pd-overlap__wrapper {
    flex-direction: column;
  }
  
  .pd-overlap__visual {
    width: 100%;
    margin-bottom: -60px; /* Pull card up */
  }
  
  .pd-overlap__img-holder {
    height: 400px;
  }
  
  .pd-overlap__card {
    width: 92%;
    margin-left: 0; /* Center it */
    padding: 40px 30px;
  }

  .pd-overlap__title {
    font-size: 32px;
  }
  
  .pd-kpi-strip {
    padding: 20px;
  }
}

/* ========================================= */
/* PRODUCT DEV LIFECYCLE (Detailed Section)  */
/* ========================================= */

.pd-lifecycle {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Header */
.pd-lifecycle__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 14px;
  border-bottom: 2px solid #d4a373;
}

.pd-lifecycle__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Left Content */
.pd-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 24px;
}

.pd-text {
  font-size: 15px;
  line-height: 1.8;
  color: #475569; /* Slate */
  margin-bottom: 20px;
}

.pd-text strong {
  color: #d4a373;
}

/* Commitment Box */
.pd-commitment {
  display: flex;
  gap: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  border-left: 4px solid #0f172a;
}

.comm-icon {
  font-size: 24px;
  color: #0f172a;
  flex-shrink: 0;
  margin-top: 4px;
}

.comm-text h5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comm-text p {
  font-size: 14px;
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

/* Right Side: Engine Card (Dark) */
.pd-engine-card {
  background: #0f172a; /* Navy */
  padding: 40px 30px;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.pd-engine-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 100% 0%, rgba(212, 163, 115, 0.1), transparent 70%);
}

.engine-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.engine-head i {
  color: #d4a373;
  font-size: 22px;
}

.engine-head span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* Engine List Items */
.engine-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.engine-item:last-child {
  margin-bottom: 0;
}

.item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a373;
  flex-shrink: 0;
  font-size: 16px;
}

.item-info h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.item-info p {
  font-size: 13px;
  color: #cbd5e1; /* Light gray */
  margin: 0;
  line-height: 1.5;
}

/* Button inside card */
.engine-action {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.btn-pd-engine {
  display: block;
  width: 100%;
  background: #d4a373;
  color: #0f172a;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-pd-engine:hover {
  background: #ffffff;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 991px) {
  .pd-lifecycle { padding: 60px 0; }
  .pd-engine-card { margin-top: 20px; }
}

/* ========================================= */
/* TRUST FINAL (Closing Section)             */
/* ========================================= */

.trust-final {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

.trust-final__card {
  background: #0f172a; /* Deep Navy */
  border-radius: 20px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Central Glow Effect */
.trust-final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.trust-final__content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

/* Badge Icon */
.trust-final__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 163, 115, 0.3);
  border-radius: 50%;
  color: #d4a373;
  font-size: 28px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.1);
}

/* Typography */
.trust-final__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}

.text-gold {
  color: #d4a373;
}

.trust-final__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 30px;
}

.trust-final__divider {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 30px auto;
}

.trust-final__text {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8; /* Slate text */
  margin-bottom: 40px;
}

/* Button */
.btn-trust-final {
  display: inline-flex;
  align-items: center;
  background: #d4a373;
  color: #0f172a;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-trust-final:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .trust-final { padding: 60px 0; }
  .trust-final__card { padding: 50px 24px; }
}

/* ========================================= */
/* PD ECOSYSTEM (Industries)                 */
/* ========================================= */

.pd-ecosystem {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Light Gray to contrast with white sections */
  font-family: "Open Sans", sans-serif;
}

.pd-ecosystem__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.pd-ecosystem__lead {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Industry Card */
.eco-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.eco-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  border-bottom: 4px solid #d4a373;
}

.eco-icon {
  font-size: 32px;
  color: #d4a373;
  margin-bottom: 20px;
}

.eco-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.eco-text {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Tech Strip */
.tech-strip {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tech-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tech-tags span {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.2s;
}

.tech-tags span:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-strip { margin-top: 40px; }
}

/* ========================================= */
/* PD VALUE MATRIX (Dark Contrast)           */
/* ========================================= */

.pd-value {
  padding: 100px 0;
  background-color: #0f172a; /* Deep Navy */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Shine */
.pd-value::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pd-value__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 20px;
}

.pd-value__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.pd-value__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 90%;
}

/* Value Items */
.val-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: background 0.3s;
}

.val-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 163, 115, 0.3);
}

.val-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.val-num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.val-head h5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #d4a373;
  margin: 0;
}

.val-item p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .pd-value { padding: 60px 0; }
  .pd-value__desc { max-width: 100%; margin-bottom: 40px; }
}

/* ========================================= */
/* TRUST FINAL REDESIGN                      */
/* ========================================= */

.trust-final-redesign {
  padding: 80px 0;
  background-color: #f9f9f9; /* Light background */
  font-family: "Open Sans", sans-serif;
}

.trust-content-left {
  padding-right: 30px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #e6cb9d; /* Light gold/beige */
  color: #0f172a; /* Dark color for icon */
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 20px;
}

.trust-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a; /* Dark color for title */
  margin-bottom: 20px;
}

.text-gold {
  color: #d4a373; /* Gold accent color */
}

.trust-lead {
  font-size: 18px;
  line-height: 1.6;
  color: #555; /* Darker text color */
  margin-bottom: 0;
}

.trust-content-right {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.trust-text {
  font-size: 16px;
  line-height: 1.8;
  color: #777; /* Lighter text color */
  margin-bottom: 30px;
}

.trust-divider {
  width: 100%;
  height: 1px;
  background-color: #e6cb9d; /* Gold divider */
  margin-bottom: 30px;
}

.btn-trust-final {
  display: inline-flex;
  align-items: center;
  background-color: #d4a373; /* Gold button */
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-trust-final:hover {
  background-color: #c3925a; /* Darker gold on hover */
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .trust-content-left {
    padding-right: 0;
    text-align: center;
  }
  .trust-badge {
    margin: 0 auto 20px;
  }
  .trust-content-right {
    padding: 30px;
  }
}

/* ========================================= */
/* PREMIUM SERVICES PORTFOLIO                */
/* ========================================= */

.services-premium {
  padding: 100px 0;
  background-color: #f9fafb; /* Very light gray background */
  font-family: "Open Sans", sans-serif;
}

/* Typography & Header */
.services-premium__subtitle {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}

.services-premium__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.text-gold {
  color: #d4a373;
}

.services-premium__divider {
  width: 60px;
  height: 4px;
  background: #d4a373;
  margin: 0 auto;
  border-radius: 2px;
}

/* Filter Buttons (Tabs Style) */
.filters-button-group {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background: transparent;
}

.filter-btn {
  background: transparent;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 30px;
}

.filter-btn:hover {
  color: #0f172a;
  background: rgba(212, 163, 115, 0.1);
}

.filter-btn.is-checked {
  color: #ffffff;
  background: #0f172a; /* Navy Active State */
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

/* Service Card Design */
.srv-card {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Area */
.srv-card__image {
  position: relative;
  overflow: hidden;
  height: 240px; /* Fixed height for consistency */
}

.srv-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.srv-card:hover .srv-card__image img {
  transform: scale(1.1);
}

/* Overlay Effect */
.srv-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6); /* Navy tint */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.srv-card:hover .srv-card__overlay {
  opacity: 1;
}

.srv-card__overlay i {
  color: #ffffff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: #d4a373;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.srv-card:hover .srv-card__overlay i {
  transform: scale(1);
}

/* Body Content */
.srv-card__body {
  padding: 24px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.srv-card:hover .srv-card__body {
  border-bottom-color: #d4a373; /* Gold bottom accent on hover */
}

.srv-card__cat {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #d4a373;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.srv-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s;
}

.srv-card:hover .srv-card__title {
  color: #d4a373;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .services-premium { padding: 60px 0; }
  .srv-card__image { height: 200px; }
  .filter-btn { padding: 8px 16px; font-size: 12px; }
}

/* ========================================= */
/* STRATEGY OVERLAP (Premium Design)         */
/* ========================================= */

.strat-overlap {
  position: relative;
  padding: 100px 0;
  background-color: #f8fafc; /* Clean background similar to image */
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

/* Flex Wrapper for Overlap Layout */
.strat-overlap__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- Left Column: Visual --- */
.strat-overlap__visual {
  width: 55%; /* Image takes up more than half */
  position: relative;
  z-index: 1;
}

.strat-overlap__img-holder {
  position: relative;
  border-radius: 4px; /* Sharp corners like the image */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  height: 680px; /* Tall vertical image */
}

.strat-overlap__img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dot Pattern */
.strat-overlap__pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d4a373 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: -1;
}

/* --- Right Column: Overlapping Card --- */
.strat-overlap__card {
  width: 50%; /* Overlap width */
  margin-left: -5%; /* THE OVERLAP MAGIC */
  background: #ffffff;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border-top: 5px solid #0f172a; /* Navy Top Border */
}

/* Header Typography */
.strat-overlap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 16px;
}

.strat-overlap__title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #334155;
}

.strat-overlap__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

/* Solutions List */
.strat-solutions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.strat-sol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.strat-sol__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.strat-sol__text strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.strat-sol__text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* KPI Strip (Dark Bar) */
.strat-kpi-strip {
  background: #0f172a; /* Dark Navy */
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-left: 4px solid #d4a373; /* Gold accent left */
}

.kpi-box {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.kpi-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.kpi-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.strat-overlap__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-strat-gold {
  background: #d4a373;
  color: #0f172a;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-strat-gold:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-strat-link {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-strat-link:hover {
  border-color: #d4a373;
  color: #d4a373;
}

/* Responsive */
@media (max-width: 991px) {
  .strat-overlap { padding: 60px 0; }
  
  .strat-overlap__wrapper {
    flex-direction: column;
  }
  
  .strat-overlap__visual {
    width: 100%;
    margin-bottom: -60px; /* Pull card up */
  }
  
  .strat-overlap__img-holder {
    height: 400px;
  }
  
  .strat-overlap__card {
    width: 92%;
    margin-left: 0; /* Center it */
    padding: 40px 30px;
  }

  .strat-overlap__title {
    font-size: 32px;
  }
  
  .strat-kpi-strip {
    padding: 20px;
  }
}

/* ========================================= */
/* PD ECOSYSTEM (Industries)                 */
/* ========================================= */

.pd-ecosystem {
  padding: 80px 0 100px;
  background-color: #f8fafc; /* Light Gray to contrast with white sections */
  font-family: "Open Sans", sans-serif;
}

.pd-ecosystem__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.pd-ecosystem__lead {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Industry Card */
.eco-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.eco-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  border-bottom: 4px solid #d4a373;
}

.eco-icon {
  font-size: 32px;
  color: #d4a373;
  margin-bottom: 20px;
}

.eco-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.eco-text {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Tech Strip */
.tech-strip {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tech-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tech-tags span {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.2s;
}

.tech-tags span:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-strip { margin-top: 40px; }
}

/* ========================================= */
/* PD VALUE MATRIX (Dark Contrast)           */
/* ========================================= */

.pd-value {
  padding: 100px 0;
  background-color: #0f172a; /* Deep Navy */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Shine */
.pd-value::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pd-value__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 20px;
}

.pd-value__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.pd-value__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 90%;
}

/* Value Items */
.val-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: background 0.3s;
}

.val-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 163, 115, 0.3);
}

.val-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.val-num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.val-head h5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #d4a373;
  margin: 0;
}

.val-item p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .pd-value { padding: 60px 0; }
  .pd-value__desc { max-width: 100%; margin-bottom: 40px; }
}

/* ========================================= */
/* ENTERPRISE CONTACT FORM (Premium Design)  */
/* ========================================= */

.enterprise-contact {
  padding: 100px 0;
  background-color: #f8fafc; /* Very light, clean background */
  font-family: "Open Sans", sans-serif;
}

/* Header Section */
.enterprise-contact__header {
  margin-bottom: 50px;
}

.enterprise-contact__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a; /* Navy */
  margin-bottom: 16px;
}

.enterprise-contact__subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b; /* Slate */
  max-width: 700px;
  margin: 0 auto;
}

/* Form Card */
.enterprise-contact__card {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08); /* Soft, deep shadow */
  border: 1px solid rgba(15, 23, 42, 0.05);
}

/* Form Sections */
.form-section-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4a373; /* Gold Accent */
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

/* Inputs & Labels */
.label-premium {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.req {
  color: #d4a373;
}

.input-premium {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background-color: #fcfcfc;
  font-size: 15px;
  color: #0f172a;
  transition: all 0.3s ease;
}

.input-premium:focus {
  border-color: #d4a373; /* Gold border on focus */
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
  outline: none;
}

.input-premium::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

/* Select Arrow Customization */
.select-arrow {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* Checkbox */
.enterprise-check .form-check-input {
  border-color: #cbd5e1;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.enterprise-check .form-check-input:checked {
  background-color: #0f172a;
  border-color: #0f172a;
}

.enterprise-check .form-check-label {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  padding-left: 5px;
}

.enterprise-check a {
  color: #0f172a;
  text-decoration: underline;
  font-weight: 600;
}

/* Submit Button */
.btn-premium-submit {
  display: inline-block;
  background-color: #0f172a; /* Navy */
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-premium-submit:hover {
  background-color: #d4a373; /* Gold */
  color: #0f172a;
  transform: translateY(-2px);
}

/* Footer Note */
.enterprise-contact__footer {
  margin-top: 30px;
}

.enterprise-contact__footer p {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .enterprise-contact__card {
    padding: 40px 24px;
  }
  
  .col-md-5.text-md-end {
    text-align: left !important;
    margin-top: 20px;
  }
  
  .btn-premium-submit {
    width: 100%;
  }
}

/* ========================================= */
/* LEGAL & PRIVACY PAGE DESIGN               */
/* ========================================= */

.legal-doc {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  color: #334155; /* Slate text for better readability */
}

/* Links */
.legal-doc a {
  color: #d4a373; /* Gold links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.legal-doc a:hover {
  color: #0f172a; /* Navy on hover */
  text-decoration: underline;
}

/* Header */
.legal-header {
  margin-bottom: 60px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 40px;
}

.legal-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}

.legal-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a; /* Navy */
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 30px;
}

.legal-intro p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Sections */
.legal-section {
  margin-bottom: 50px;
}

.legal-heading {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  border-left: 4px solid #d4a373; /* Gold left border */
  padding-left: 16px;
}

.legal-subheading {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  margin-top: 30px;
}

.legal-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Custom Lists */
.legal-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.legal-list li i {
  color: #d4a373; /* Gold checkmarks/icons */
  margin-top: 4px;
  flex-shrink: 0;
}

.legal-list-dots {
  padding-left: 20px;
  margin-bottom: 24px;
}

.legal-list-dots li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* Controller Box */
.controller-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  margin-top: 20px;
}

.box-row {
  display: flex;
  margin-bottom: 8px;
  font-size: 15px;
}

.box-row:last-child {
  margin-bottom: 0;
}

.box-label {
  font-weight: 700;
  width: 140px;
  color: #0f172a;
  flex-shrink: 0;
}

/* Contact Box */
.contact-box {
  background-color: #f8fafc;
  border-left: 4px solid #0f172a;
  padding: 24px;
  border-radius: 4px;
}

.contact-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-box p {
  margin-bottom: 5px;
  font-size: 15px;
}

/* Note Box */
.note-box {
  background-color: #fffbeb; /* Very light yellow/gold tint */
  border: 1px solid #fcd34d;
  color: #92400e;
  padding: 20px;
  border-radius: 8px;
  margin-top: 60px;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-doc { padding: 60px 0; }
  .box-row { flex-direction: column; }
  .box-label { width: 100%; margin-bottom: 4px; }
}

/* ========================================= */
/* LEGAL & PRIVACY PAGE DESIGN               */
/* ========================================= */

.legal-doc {
  padding: 80px 0 100px;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  color: #334155;
}

.legal-doc a {
  color: #d4a373;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.legal-doc a:hover {
  color: #0f172a;
  text-decoration: underline;
}

.legal-header {
  margin-bottom: 60px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 40px;
}

.legal-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}

.legal-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 30px;
}

.legal-warning-box {
  background-color: #f8f9fa;
  border-left: 4px solid #0f172a;
  padding: 20px;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 20px;
}

.legal-intro p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-section {
  margin-bottom: 50px;
}

.legal-heading {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  border-left: 4px solid #d4a373;
  padding-left: 16px;
}

.legal-subheading {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  margin-top: 30px;
}

.legal-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.legal-list li i {
  color: #d4a373;
  margin-top: 4px;
  flex-shrink: 0;
}

.legal-list-dots {
  padding-left: 20px;
  margin-bottom: 24px;
}

.legal-list-dots li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-box {
  background-color: #f8fafc;
  border-left: 4px solid #0f172a;
  padding: 24px;
  border-radius: 4px;
}

.contact-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
  margin-bottom: 10px;
}

.note-box {
  background-color: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  padding: 20px;
  border-radius: 8px;
  margin-top: 60px;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-doc { padding: 60px 0; }
}

/* ========================================= */
/* LEGAL & COOKIE POLICY DESIGN              */
/* ========================================= */

/* (Clasele generale 'legal-*' sunt deja definite la Privacy/Terms. 
   Adaugă doar ce este nou mai jos) */

/* Cookie Badges */
.cookie-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-cookie {
  display: inline-block;
  padding: 6px 12px;
  background-color: #e2e8f0;
  color: #475569;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Legal Table Styling */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th {
  background-color: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.legal-table td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: top;
}

.legal-table tr:nth-child(even) {
  background-color: #fcfcfc;
}

.legal-table code {
  background-color: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  color: #d946ef; /* Magenta for code/tech look */
  font-family: monospace;
  font-size: 13px;
}

/* Responsive Table */
@media (max-width: 768px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ========================================= */
/* TRUST PREMIUM (Dark Card Design)          */
/* ========================================= */

.trust-premium {
  padding: 80px 0 100px;
  background-color: #f9f9f9; /* Fundalul paginii (gri deschis) */
  font-family: "Open Sans", sans-serif;
}

/* Cardul Principal - Aici e cheia: Fundalul Inchis */
.trust-card {
  background-color: #0b1120 !important; /* Navy Inchis - FORȚAT */
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  color: #ffffff !important; /* Text Alb - FORȚAT */
  overflow: hidden;
}

/* Icon */
.trust-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(227, 206, 139, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e3ce8b; /* Crem/Auriu */
  font-size: 24px;
  background: radial-gradient(circle, rgba(227, 206, 139, 0.1) 0%, transparent 70%);
  box-shadow: 0 0 20px rgba(227, 206, 139, 0.1);
}

/* Tipografie */
.trust-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #e3ce8b;
  margin-bottom: 24px;
  line-height: 1.2;
}

.text-gold {
  color: #e3ce8b; /* Crem/Auriu */
}

.trust-text-main {
  font-size: 18px;
  line-height: 1.8;
  color: #e2e8f0; /* Gri foarte deschis */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Linie despartitoare */
.trust-divider {
  width: 50px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 auto 30px auto;
}

.trust-text-sub {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8; /* Gri albastrui */
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* Buton */
.btn-trust-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e3ce8b; /* Crem */
  color: #0b1120; /* Text inchis */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 40px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-trust-gold:hover {
  background-color: #ffffff;
  color: #0b1120;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .trust-premium { padding: 60px 0; }
  .trust-card { padding: 50px 24px; }
  .trust-title { font-size: 28px; }
  .trust-text-main { font-size: 16px; }
}