:root {
    --bg: #f5f3ef;
    --fg: #13110e;
    --primary: #e55a1c;
    --primary-dark: #c44c15;
    --primary-light: #fdf0ea;
    --card: #ffffff;
    --muted: #7a6e66;
    --border: #e8e2dc;
    --dark: #0e1520;
    --dark2: #111827;
    --sidebar-dark: #08111e;
    --radius: 14px;
    --radius-lg: 22px;
    --font-display: "Open Sans", sans-serif;
    --font-body: "Lato", sans-serif;
    /* --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif; */
    --cream:#F7F3EC;
	--cream-2:#EFE8DC;
	--ink:#181310;
	--ink-soft:#4A4239;
	--muted:#8A8078;
	--orange:#E2611F;
	--orange-2:#C24E15;
	--orange-tint:#FBE4D5;
	--navy-a:#0E1520;
	--navy-b:#241408;
	--border:rgba(24,19,16,.12);
	--border-soft:rgba(24,19,16,.07);
	--radius-sm:8px;
	--radius:16px;
	--radius-lg:26px;
	--shadow:0 24px 60px -28px rgba(24,19,16,.35);
	--shadow-sm:0 10px 26px -14px rgba(24,19,16,.25);
	--font-display:"Open Sans", sans-serif;
	--font-body:"Lato", sans-serif;
	--container:1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

.mt-20 {
    margin-bottom: 20PX;
}

.mb-20 {
    margin-bottom: 20PX;
}

/* PROGRESS BAR */

#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #f5935a);
    z-index: 9999;
    width: 0;
    transition: width 0.2s;
}

/* ===== HEADER ===== */

#header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(245, 243, 239, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

#header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

#header-inner{
	max-width:1440px;margin:0 auto;padding:0 24px;
	height:76px;display:flex;align-items:center;justify-content:space-between;gap:12px;
	}

#brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    flex-shrink: 0;
}

#brand-logo {
    height: 60px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

#brand-logo-footer {
    height: 65px;
    width: auto;
    display: block;
    /* filter: brightness(0) invert(1); */
}

/* keep old IDs for footer fallback */

#brand-mark {
    display: none;
}

#brand-text {
    display: none;
}

#brand-name {
    display: none;
}

#brand-tagline {
    display: none;
}

/* NAV */

#main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--fg);
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.nav-btn:hover,
.nav-item.open>.nav-btn {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-btn iconify-icon {
    font-size: 12px;
    transition: transform 0.2s;
}

.nav-item.open>.nav-btn iconify-icon {
    transform: rotate(180deg);
}

/* MEGA MENU */

.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    min-width: 680px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    pointer-events: none;
    overflow: hidden;
}

.nav-item.open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-inner {
    display: grid;
    gap: 0;
}

.mega-col-header {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-body);
    line-height: 1.2;
    margin-bottom: 12px;
    padding: 0;
}

.mega-col-content.description {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 18px;
    padding: 0;
}

.mega-links {
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 400;
    color: var(--fg);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    line-height: 1.3;
}

.mega-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mega-link .licon {
    font-size: 15px;
    flex-shrink: 0;
    opacity: 0.55;
}

.mega-link:hover .licon {
    opacity: 1;
}

.mega-link-sub {
    font-size: 11.5px;
    color: var(--muted);
    display: block;
}

.mega-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0;
}

.mega-section-col {
    border-right: 1px solid var(--border);
}

.mega-section-col:last-child {
    border-right: none;
}

.mega-highlight {
    background: linear-gradient(135deg, #0e1520 0%, #1f2d3d 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-highlight-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.mega-highlight-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    transition: background 0.2s;
}

.mega-cta:hover {
    background: var(--primary-dark);
}

/* Products mega: 2-col grid */

.products-mega {
    min-width: 860px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.products-col {
    padding: 8px;
    border-right: 1px solid var(--border);
}

.products-col:last-child {
    border-right: none;
}

.products-col-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 14px 6px;
}


/* Home product */

.products-mega {
	padding: 0;
	overflow: hidden;
	min-width: 680px;  /* Ensure enough width for two columns + sidebar */
	max-width: min(780px, calc(100vw - 48px));
	}

	/* Fix the outer flex container */
	.products-mega > div {
	display: grid !important;
	grid-template-columns: 200px 1fr !important;
	gap: 0 !important;
	}

	/* Fix the sidebar (dark section) */
	.products-mega > div > div:first-child {
	padding: 24px 20px !important;
	background: linear-gradient(180deg, #0e1520 0%, #231510 100%) !important;
	min-height: 100%;
	}

	/* Fix the products grid container */
	.products-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 12px 28px !important;
	padding: 20px 24px 20px 28px !important;
	background: #fff !important;
	}

	/* Fix column wrapper */
	.products-col {
	display: flex;
	flex-direction: column;
	gap: 2px;
	}

	/* Fix column labels */
	.products-col-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 0 10px;
	margin: 0 0 4px 0;
	}

	/* Fix labels with top margin */
	.products-col-label[style*="margin-top"] {
	margin-top: 10px !important;
	}

	/* Fix mega links inside products */
	.products-grid .mega-link {
	padding: 6px 10px !important;
	border-radius: 6px !important;
	font-size: 12.5px !important;
	font-weight: 500 !important;
	color: var(--ink-soft) !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	transition: background .15s ease, color .15s ease !important;
	}

	.products-grid .mega-link:hover {
	background: var(--cream) !important;
	color: var(--orange) !important;
	}

	.products-grid .mega-link .licon {
	font-size: 15px !important;
	color: var(--muted) !important;
	flex-shrink: 0 !important;
	}

	.products-grid .mega-link:hover .licon {
	color: var(--orange) !important;
	}

	/* Fix the sidebar text spacing */
	.products-mega .mega-cta {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	background: var(--orange) !important;
	padding: 8px 14px !important;
	border-radius: 999px !important;
	transition: background .2s ease !important;
	}

	.products-mega .mega-cta:hover {
	background: var(--orange-2) !important;
	}

	/* Responsive: shrink the products mega menu on narrower desktop/tablet widths
	so it never overflows the viewport before the hamburger breakpoint kicks in */
	@media (max-width:1300px){
	.products-mega{ min-width:560px; }
	.products-mega > div{ grid-template-columns:170px 1fr !important; }
	.products-grid{ grid-template-columns:1fr !important; gap:4px !important; padding:16px 18px !important; }
	}

	#header-cta{display:flex;align-items:center;gap:10px}
	#hamburger{display:none;background:none;border:1px solid var(--border);border-radius:8px;padding:8px;color:var(--ink)}

	/* mobile drawer */
	#drawer-overlay{position:fixed;inset:0;background:rgba(14,10,7,.55);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease;z-index:1100}
	#drawer-overlay.open{opacity:1;visibility:visible}
	#mobile-drawer{
	position:fixed;top:0;right:0;bottom:0;width:min(360px,88vw);background:#fff;z-index:1200;
	transform:translateX(100%);transition:transform .35s cubic-bezier(.2,.8,.2,1);
	display:flex;flex-direction:column;overflow-y:auto;
	}
	#mobile-drawer.open{transform:translateX(0)}
	#drawer-head{display:flex;justify-content:space-between;align-items:center;padding:18px 20px;border-bottom:1px solid var(--border-soft)}
	#drawer-close{background:none;border:none;font-size:18px;color:var(--ink)}
	.drawer-section{border-bottom:1px solid var(--border-soft)}
	.drawer-section-head{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;font-weight:700;font-size:14.5px}
	.drawer-section-body{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 20px}
	.drawer-section.open .drawer-section-body{max-height:600px;padding-bottom:12px}
	.drawer-section.open .drawer-section-head iconify-icon{transform:rotate(180deg)}
	.drawer-link{display:block;padding:8px 4px;font-size:13.5px;color:var(--ink-soft);border-bottom:1px solid var(--border-soft)}
	.drawer-link:last-child{border-bottom:none}
	.drawer-sub-label{font-size:10.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin:10px 0 4px}

	@media (max-width:1300px){
	.nav-btn{padding:9px 8px;font-size:13.3px}
	#main-nav{gap:0}
	}
	@media (max-width:1180px){
	#header-cta .btn-outline{display:none}
	}
	@media (max-width:1080px){
	#main-nav{display:none}
	#hamburger{display:flex}
	#header-cta .btn-outline{display:inline-flex}
	}
	@media (max-width:640px){
	#header-cta .btn-primary{display:none}
	}
	@media (max-width:400px){
	#header-inner{padding:0 14px}
	#header-cta{gap:6px}
	}

/* Simple dropdown */

.simple-dropdown {
    min-width: 220px;
}

.simple-dropdown .mega-links {
    padding: 8px;
}

/* Header CTA */

#header-cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: #fff;
    color: var(--fg);
}

.btn-white:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 12px;
}

/* Hamburger */

#hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg);
    border-radius: 8px;
    cursor: pointer;
    color: var(--fg);
}

#hamburger:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Mobile drawer */

#mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    z-index: 950;
    background: #fff;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#mobile-drawer.open {
    right: 0;
}

#drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 940;
}

#drawer-overlay.show {
    display: block;
}

#drawer-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--muted);
}

.drawer-section {
    border-bottom: 1px solid var(--border);
}

.drawer-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

.drawer-section-head:hover {
    color: var(--primary);
}

.drawer-section-head iconify-icon {
    transition: transform 0.2s;
}

.drawer-section.expanded .drawer-section-head iconify-icon {
    transform: rotate(180deg);
}

.drawer-section-body {
    display: none;
    padding: 0 20px 12px;
}

.drawer-section.expanded .drawer-section-body {
    display: block;
}

.drawer-link {
    display: block;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.drawer-link:last-child {
    border-bottom: none;
}

.drawer-link:hover {
    color: var(--primary);
}

.drawer-sub-group {
    margin-top: 6px;
}

.drawer-sub-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 0 4px;
}

/* ===== HERO ===== */
/* Hero Section */

.hero {
    background: #f8f7f4;
    min-height: 520px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    gap: 48px;
    border-radius: var(--radius-lg);
    max-width: 1380px;
    margin: 24px auto 0;
}

.hero-left {
    flex: 1;
    animation: fadeUp 0.7s ease both;
}

.hero-right {
    flex: 1;
    position: relative;
    animation: fadeUp 0.7s ease 0.2s both;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff2ea;
    color: #c24f0c;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid #f5c9a8;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e55a1c;
}

.headline {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.headline em {
    color: var(--primary);
    font-style: normal;
}

.subtext {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 100%;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-secondary-custom {
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
}

.btn-secondary-custom {
    background: #fff;
    color: var(--fg);
    border: 1px solid var(--border);
}

.btn-secondary-custom:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

/* Carousel */

.carousel-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5/4;
    background: #e0d6cc;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(145deg, #e6dbd0, #d4c8bc);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grad-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 60%);
    pointer-events: none;
}

.join-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    z-index: 3;
}

.join-btn:hover {
    background: var(--primary-dark);
}

.rating-card {
    position: absolute;
    top: 24px;
    left: -28px;
    width: 220px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 14px 16px;
    z-index: 4;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.rating-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

.star {
    width: 14px;
    height: 14px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.half {
    background: linear-gradient(90deg, var(--primary) 50%, #ddd 50%);
}

.rating-num {
    font-size: 26px;
    font-weight: 700;
    margin: 5px 0;
}

.clients-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -6px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.avatar:first-child {
    margin-left: 0;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* Animations */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* #hero {
padding: 24px 32px 80px;
max-width: 1380px;
margin: 0 auto;
}
#hero-shell {
position: relative;
border-radius: 28px;
overflow: hidden;
min-height: 720px;
background: linear-gradient(
135deg,
#080e1a 0%,
#13192a 50%,
#27130a 100%
);
display: flex;
flex-direction: column;
}
#hero-bg-glow-1 {
position: absolute;
width: 500px;
height: 500px;
border-radius: 50%;
background: radial-gradient(
circle,
rgba(229, 90, 28, 0.3) 0%,
transparent 70%
);
top: -100px;
left: -100px;
pointer-events: none;
}
#hero-bg-glow-2 {
position: absolute;
width: 600px;
height: 600px;
border-radius: 50%;
background: radial-gradient(
circle,
rgba(229, 90, 28, 0.18) 0%,
transparent 70%
);
top: -80px;
right: -150px;
pointer-events: none;
}
#hero-grid {
position: relative;
z-index: 2;
flex: 1;
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 40px;
padding: 52px 52px 56px;
align-items: center;
}
#hero-copy {
display: flex;
flex-direction: column;
gap: 0;
}
.hero-badges {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 24px;
}
.hero-badge {
height: 30px;
padding: 0 14px;
border-radius: 100px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
color: rgba(255, 255, 255, 0.8);
font-size: 12px;
font-weight: 500;
display: inline-flex;
align-items: center;
}
#hero-title {
font-family: var(--font-display);
font-size: 68px;
line-height: 0.96;
font-weight: 800;
letter-spacing: -0.04em;
color: #fff;
margin-bottom: 24px;
}
#hero-title span {
color: var(--primary);
}
#hero-desc {
font-size: 18px;
color: rgba(255, 255, 255, 0.72);
line-height: 1.75;
max-width: 580px;
margin-bottom: 36px;
}
#hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 44px;
}
#hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
padding-top: 32px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hstat {
display: flex;
flex-direction: column;
gap: 4px;
}
.hstat-num {
font-family: var(--font-display);
font-size: 34px;
font-weight: 800;
color: #fff;
line-height: 1;
}
.hstat-label {
font-size: 12px;
color: rgba(255, 255, 255, 0.6);
line-height: 1.5;
}
#hero-visual {
position: relative;
height: 100%;
min-height: 540px;
}
#hero-video-wrap {
width: 100%;
height: 100%;
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
}
#hero-video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
opacity: 0.75;
}
#hero-video-fallback {
width: 100%;
height: 100%;
background: linear-gradient(
135deg,
rgba(229, 90, 28, 0.15) 0%,
rgba(0, 0, 0, 0.4) 100%
);
display: flex;
align-items: center;
justify-content: center;
}
.vfallback-icon {
font-size: 64px;
opacity: 0.3;
}
#hero-overlay {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
background: rgba(8, 14, 26, 0.82);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 18px 20px;
} */

.overlay-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.overlay-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.overlay-tag {
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(229, 90, 28, 0.2);
    border: 1px solid rgba(229, 90, 28, 0.4);
    color: #f5935a;
    font-size: 11px;
    font-weight: 700;
}

.overlay-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.omet {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px;
}

.omet strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.omet span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.4;
}

/* ===== SECTION STYLES ===== */

.section {
    padding: 88px 32px;
    max-width: 1380px;
    margin: 0 auto;
}

.section-tight {
    padding: 64px 32px;
    max-width: 1380px;
    margin: 0 auto;
}

.section-full {
    padding: 88px 0;
}

.section-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.eyebrow-light {
    color: rgba(229, 90, 28, 0.8);
}

.sec-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 0;
}

.sec-title-sm {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0;
}

.sec-lead {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
}

.sec-lead-light {
    color: rgba(255, 255, 255, 0.65);
}

.sec-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 100px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.icon-orb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 18px;
}

.icon-orb iconify-icon {
    font-size: 22px;
    color: var(--primary);
}

/* WHO WE ARE */

#who-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}

#who-panel {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
}

#who-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.metric-box {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
}

.metric-box strong {
    display: block;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}

.metric-box span {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

#who-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cap-card {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.cap-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.cap-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.cap-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
    flex: 1;
}

.cap-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.cap-link:hover {
    gap: 10px;
}

/* SERVICES */

.services-bg {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}

#services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.svc-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.svc-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.svc-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
}

.svc-link:hover {
    gap: 10px;
}

/* STATS */

#stats-shell {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #180800 0%, #e55a1c 100%);
}

#stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-box {
    padding: 22px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.stat-box strong {
    display: block;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
}

/* INDUSTRIES */

#industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ind-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 22px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    align-items: center;
    transition: box-shadow 0.2s;
}

.ind-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.ind-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.ind-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ind-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* TECHNOLOGY */

#tech-shell {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #180800 0%, #e55a1c 100%);
    color: #fff;
}

#tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

#tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.tech-feat {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.tech-feat h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tech-feat p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

#tech-diagram {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.tech_dia_img {
    width: 100%;
    height: auto;
}

.dia-center {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(229, 90, 28, 0.4);
    background: radial-gradient(circle, rgba(229, 90, 28, 0.22) 0%, rgba(229, 90, 28, 0.04) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.dia-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.dia-node {
    position: absolute;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

/* CASE STUDIES */

#cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-card {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.case-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.case-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
}

.case-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 18px;
}

.case-step {
    padding: 13px;
    border-radius: 10px;
    background: var(--bg);
}

.case-step strong {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.case-step span {
    font-size: 13px;
    color: var(--fg);
    line-height: 1.55;
}

.case-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.case-badge {
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

/* TESTIMONIALS */

#testi-shell {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--border);
}

#testi-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

#main-quote {
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, #180800 0%, #e55a1c 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#main-quote p {
    font-size: 21px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.quote-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.q-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.q-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.q-name {
    font-weight: 600;
    font-size: 14px;
}

.q-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

#testi-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-quote {
    padding: 20px;
    border-radius: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.mini-quote p {
    font-size: 13px;
    color: var(--fg);
    line-height: 1.7;
    margin-bottom: 12px;
}

.mini-quote strong {
    font-size: 13px;
}

.mini-quote small {
    font-size: 11.5px;
    color: var(--muted);
}

.logo-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.logo-chip {
    height: 54px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

/* INSIGHTS */

#insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.blog-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.blog-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-body h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.blog-link:hover {
    gap: 10px;
}

/* CTA / CONTACT */

#cta-shell {
    padding: 52px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fff8f5 0%, var(--primary-light) 100%);
    border: 1px solid rgba(229, 90, 28, 0.15);
}

#cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.cta-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 12px;
}

.cta-check-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-check-icon iconify-icon {
    font-size: 18px;
    color: var(--primary);
}

.cta-check strong {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.cta-check p {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field {
    height: 52px;
    border-radius: 10px;
    background: #fff;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 13.5px;
    color: var(--muted);
    cursor: text;
    transition: border-color 0.2s;
}

.form-field:hover {
    border-color: var(--primary);
    color: var(--fg);
}

.form-field.full {
    grid-column: 1/-1;
}

.form-field.tall {
    height: 200px;
    align-items: flex-start;
    padding-top: 14px;
}

@media(max-width:768px) {
    .form-field.tall {
        height: 80px;
    }
}

.form-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.form-chip {
    padding: 8px 14px;
    border-radius: 100px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

/* MAGAZINES */

#mag-shell {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
    border: 1px solid var(--border);
}

#mag-feature {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    margin-bottom: 22px;
    align-items: stretch;
}

#mag-hero {
    padding: 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #180800 0%, #e55a1c 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

#mag-hero p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.mag-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mag-stat {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
}

.mag-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.mag-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

#mag-note {
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

#mag-note h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

#mag-note p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
}

#mags-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.mag-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.mag-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.mag-cover {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0e1520, #291910);
}

.mag-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mag-badge-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.mag-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.mag-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
}

.mag-issue {
    color: var(--primary);
    font-weight: 700;
}

.mag-date {
    color: var(--muted);
}

.mag-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.mag-body p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}

/* CLIENTS */

#clients-shell {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #180800 0%, #e55a1c 100%);
    color: #fff;
}

#client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.client-chip {
    height: 72px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
}

/* GLOBAL PRESENCE */

#presence-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

#map-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, var(--primary-light) 0%, #fff 100%);
    min-height: 380px;
    border: 1px solid var(--border);
}

#map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.map-dot {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.map-dot-label {
    padding: 5px 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.map-dot-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(229, 90, 28, 0.18);
}

#presence-offices {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.office-box {
    padding: 20px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
}

.office-box h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.office-box p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* FOOTER */

#footer {
    background: linear-gradient(155deg, var(--navy-a), var(--navy-b));
    color: rgba(255, 255, 255, .75);
    margin-top: 110px;
    
}

#footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px 32px 28px;
}

#footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.50fr 0.50fr 0.50fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

.footer-contact {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.footer-col-head {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

#footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 16px;
}

.footer-copy {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
}

#footer-socials {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
}

.social-btn:hover {
    background: var(--primary);
}

.social-btn iconify-icon {
    font-size: 16px;
    color: #fff;
}

/* CHATBOT */

#chatbot{
	position:fixed;right:24px;bottom:24px;width:320px;background:#fff;border-radius:16px;
	box-shadow:var(--shadow);z-index:900;overflow:hidden;border:1px solid var(--border-soft);
	transition:width .3s ease, height .3s ease;
	max-width:calc(100vw - 32px);
	}
	#chatbot-head{background:linear-gradient(120deg,var(--navy-a),var(--navy-b));color:#fff;padding:14px 16px;display:flex;justify-content:space-between;align-items:center;cursor:pointer}
	#chatbot-title{font-family:var(--font-display);font-weight:700;font-size:14px}
	#chatbot-sub{font-size:11.5px;color:rgba(255,255,255,.6)}
	#chatbot-online{font-size:10.5px;background:rgba(255,255,255,.12);padding:4px 9px;border-radius:999px}
	#chatbot-minimize{background:rgba(255,255,255,.15);border:none;color:#fff;width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center}
	#chatbot-body{padding:16px;display:flex;flex-direction:column;gap:10px;max-height:280px;overflow-y:auto}
	#chatbot.minimized #chatbot-body{display:none}

.chat-bot-bubble {
    background: var(--bg);
    border-radius: 12px 12px 12px 4px;
    padding: 10px 12px;
    font-size: 12.5px;
    max-width: 86%;
    line-height: 1.6;
}

.chat-user-bubble {
    background: #0f172a;
    color: #fff;
    border-radius: 12px 12px 4px 12px;
    padding: 10px 12px;
    font-size: 12.5px;
    max-width: 86%;
    align-self: flex-end;
    line-height: 1.6;
}

.chat-input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    border-radius: 10px;
    background: var(--bg);
    padding: 0 12px;
    font-size: 12px;
    color: var(--muted);
    cursor: pointer;
}

.chat-send {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* FLOATING */
/* FLOATING ACTION BUTTONS - Responsive */
#floating{position:fixed;left:24px;bottom:24px;display:flex;flex-direction:column;gap:10px;z-index:900}
	.float-btn{
	width:48px;height:48px;border-radius:50%;background:var(--orange);color:#fff;
	display:flex;align-items:center;justify-content:center;font-size:19px;box-shadow:var(--shadow-sm);
	transition:transform .2s ease;
	}
	.float-btn:hover{transform:scale(1.08)}
	@media (max-width:480px){#floating{left:14px;bottom:14px}}
/* #floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    transition: all 0.2s ease;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
    cursor: pointer;
}

.float-btn:hover {
    transform: translateY(-4px);
    background: #222;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.float-btn:active {
    transform: translateY(0px);
    background: #111;
}

.float-btn iconify-icon {
    font-size: 24px;
    color: #fff;
    transition: transform 0.2s;
}

.float-btn:hover iconify-icon {
    transform: scale(1.05);
} */
 #floating{position:fixed;left:24px;bottom:24px;display:flex;flex-direction:column;gap:10px;z-index:900}
	.float-btn{
	width:48px;height:48px;border-radius:50%;background:var(--orange);color:#fff;
	display:flex;align-items:center;justify-content:center;font-size:19px;box-shadow:var(--shadow-sm);
	transition:transform .2s ease;
	}
	.float-btn:hover{transform:scale(1.08)}
	@media (max-width:480px){#floating{left:14px;bottom:14px}}

/* Tablet devices (768px and below) */
@media (max-width: 768px) {
    /* #floating {
        right: 20px;
        bottom: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .float-btn iconify-icon {
        font-size: 22px;
    } */

    /* .mag-stats {
        display: flex;
        flex-direction: column;
    } */
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    /* #floating {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    }

    .float-btn iconify-icon {
        font-size: 20px;
    }

    .float-btn:hover {
        transform: translateY(-2px);
    } */
}

/* Very small devices (360px and below) */
@media (max-width: 360px) {
    /* #floating {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .float-btn iconify-icon {
        font-size: 18px;
    } */
}

/* Landscape orientation on mobile */
@media (max-height: 480px) and (orientation: landscape) {
    /* #floating {
        right: 16px;
        bottom: 12px;
        gap: 8px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .float-btn iconify-icon {
        font-size: 18px;
    } */
}

/* Larger screens (optional, for big desktops) */
@media (min-width: 1400px) {
    /* #floating {
        right: 32px;
        bottom: 32px;
        gap: 16px;
    }

    .float-btn {
        width: 64px;
        height: 64px;
        border-radius: 22px;
    }

    .float-btn iconify-icon {
        font-size: 28px;
    } */
}

/* High contrast / dark mode compatibility (optional) */
@media (prefers-color-scheme: dark) {
    /* .float-btn {
        background: #1a1a1a;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .float-btn:hover {
        background: #333;
    } */
}

/* POPUP */

/* POPUP - Fully Responsive */

#popup{position:fixed;inset:0;background:rgba(14,11,8,.6);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease;padding:20px}
	#popup.open{opacity:1;visibility:visible}
	#popup-box{background:#fff;border-radius:var(--radius);padding:32px;max-width:400px;width:100%;position:relative;box-shadow:var(--shadow);max-height:90vh;overflow-y:auto}
	#popup-close{position:absolute;top:14px;right:14px;background:var(--cream);border:none;width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center}
	#popup-box h2{font-size:22px;margin-bottom:8px}
	#popup-box>p{font-size:13.5px;color:var(--ink-soft);margin-bottom:18px}
	.popup-input{width:100%;border:1px solid var(--border);border-radius:9px;padding:11px 13px;font-family:var(--font-body);font-size:13.5px;margin-bottom:10px;background:var(--cream)}
	.popup-submit{width:100%;background:var(--orange);color:#fff;border:none;padding:13px;border-radius:9px;font-weight:700;font-size:14px;margin-top:4px}
	.popup-privacy{font-size:11px;color:var(--muted);text-align:center;margin-top:10px}
	@media (max-width:480px){#popup-box{padding:24px 20px}}

    #consultationPopup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.popup-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: #fff;

    width: 90%;
    max-width: 500px;

    padding: 40px 30px;

    border-radius: 10px;

    z-index: 2;
}

.popup-close {
    position: absolute;

    right: 15px;
    top: 10px;

    background: none;
    border: none;

    font-size: 32px;

    cursor: pointer;
}

.popup-input {
    width: 100%;

    padding: 12px;

    margin-bottom: 12px;

    border: 1px solid #ddd;

    box-sizing: border-box;
}

textarea.popup-input {
    height: 80px;
    resize: vertical;
}

.popup-submit {
    width: 100%;

    padding: 14px;

    border: none;

    cursor: pointer;
}

.popup-privacy {
    margin-top: 10px;

    text-align: center;

    font-size: 12px;
}

/* ANIMATIONS */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-anim-1 {
    animation: fadeUp 0.8s ease forwards;
}

.hero-anim-2 {
    animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero-anim-3 {
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-anim-4 {
    animation: fadeUp 0.8s ease 0.45s forwards;
}

.hero-anim-5 {
    animation: fadeUp 0.8s ease 0.6s forwards;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1140px) {
    #hero-title {
        font-size: 52px;
    }

    #services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    #hero-grid {
        grid-template-columns: 1fr;
    }

    #hero-visual {
        min-height: 360px;
    }

    #who-grid,
    #tech-grid,
    #cta-grid,
    #presence-grid {
        grid-template-columns: 1fr;
    }

    #industries-grid {
        grid-template-columns: 1fr;
    }

    #testi-grid {
        grid-template-columns: 1fr;
    }

    #mag-feature {
        grid-template-columns: 1fr;
    }

    #footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ind-card {
        grid-template-columns: 140px 1fr;
    }

    #stats-grid,
    .logo-band,
    #tech-features,
    #who-cards,
    #who-metrics,
    .mag-stats {
        grid-template-columns: repeat(1, 1fr);
    }

    #map-wrap {
        min-height: auto;
    }

    #mag-shell,
    #testi-shell,
    .case-card,
    #tech-shell,
    #stats-shell,
    #who-panel,
    .ind-card,
    #mag-hero,
    #mag-note {
        padding: 10px;
    }

    .hero {
        padding: 15px 30px;
    }

    #client-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    #main-nav {
        display: none;
    }

    #hamburger {
        display: flex;
    }

    #header-cta .btn-outline {
        display: none;
    }

    #mags-grid {
        grid-template-columns: 1fr;
    }

    .cta-check {
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
        text-align: left;
        padding: 10px;
    }
}

@media (max-width: 680px) {
    #hero {
        padding: 16px 16px 56px;
    }

    #hero-grid {
        padding: 28px 24px 32px;
    }

    #hero-title {
        font-size: 38px;
    }

    #hero-desc {
        font-size: 15px;
    }

    #hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rating-card {
        display: none;
    }

    .section,
    .section-tight {
        padding: 56px 16px;
    }

    .section-inner {
        padding: 0 10px;
    }

    .sec-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sec-title {
        font-size: 32px;
    }

    .sec-title-sm {
        font-size: 26px;
    }

    #services-grid,
    #cases-grid,
    #insights-grid,
    #mags-grid {
        grid-template-columns: 1fr;
    }

    #footer-grid {
        grid-template-columns: 1fr;
    }

    #footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    #cta-shell {
        padding: 10px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    #hero-actions {
        flex-direction: column;
    }

    #hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    #client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .overlay-metrics {
        grid-template-columns: 1fr;
    }

    #header-inner {
        padding: 0 16px;
    }

    #chatbot {
        left: 16px;
        bottom: 90px;
        width: calc(100% - 32px);
    }
}

/* Nav close on mobile */

.nav-item {
    user-select: none;
}

/* ============================================
   STIMULUS RESEARCH SERVICES - GLOBAL STYLES
   Prefix: sp-
   Primary color: #e55a1c
   ============================================ */

/* ---------- CSS RESET & BASE ---------- */

body.sp-body {
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- PRELOADER ---------- */
.sp-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.sp-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sp-preloader__content {
    text-align: center;
}

.sp-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: sp-pulse 1.5s infinite;
}

.sp-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.sp-preloader__fill {
    width: 0%;
    height: 100%;
    background: #e55a1c;
    animation: sp-loader-fill 1.5s ease forwards;
}

@keyframes sp-loader-fill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes sp-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER / NAVIGATION ---------- */
.sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.sp-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.sp-nav__logo span {
    color: #e55a1c;
    font-weight: 700;
}

.sp-nav__links {
    display: flex;
    gap: 2rem;
}

.sp-nav__link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.sp-nav__link:hover,
.sp-nav__link.active {
    color: #e55a1c;
}

.sp-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e55a1c;
    transition: width 0.3s;
}

.sp-nav__link:hover::after,
.sp-nav__link.active::after {
    width: 100%;
}

.sp-nav__cta {
    background: #e55a1c;
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sp-nav__cta:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 90, 28, 0.3);
}

.sp-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.sp-hamburger,
.sp-hamburger::before,
.sp-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.sp-nav__toggle.active .sp-hamburger {
    transform: rotate(45deg);
}

.sp-nav__toggle.active .sp-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.sp-nav__toggle.active .sp-hamburger::after {
    opacity: 0;
}

/* ---------- HERO SECTION ---------- */
.sp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    overflow: hidden;
}

.sp-hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/company_profile/1.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.sp-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.3), transparent);
}

.sp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    padding: 6rem 1rem;
}

.sp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 90, 28, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.sp-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #e55a1c;
    border-radius: 50%;
    display: inline-block;
    animation: sp-pulse 1.5s infinite;
}

.sp-hero__title {
    font-size: clamp(2.2rem, 6vw, 2.625rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.sp-accent-text {
    color: #e55a1c;
    background: linear-gradient(135deg, #e55a1c, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.sp-hero__desc {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.sp-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.sp-stat-item {
    text-align: center;
}

.sp-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #e55a1c;
}

.sp-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
}

.sp-hero__scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #6b7280;
    animation: sp-bounce 2s infinite;
}

@keyframes sp-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ---------- SECTION GENERICS ---------- */
.sp-section {
    padding: 5rem 0;
}

.sp-section--alt {
    background: #f9fafb;
}

.sp-section--light {
    background: #ffffff;
}

.sp-section--gradient {
    background: linear-gradient(120deg, #fef2e8, #ffffff);
}

.sp-section--story {
    background: #fef9f5;
}

.sp-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.sp-section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e55a1c;
    margin-bottom: 0.5rem;
}

.sp-section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #111827;
}

.sp-section__sub {
    max-width: 650px;
    margin: 1rem auto 0;
    color: #4b5563;
}

.sp-text-center {
    text-align: center;
}

/* ---------- ABOUT SECTION ---------- */
.sp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sp-about__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sp-about__desc {
    color: #4b5563;
    line-height: 1.7;
}

.sp-about__badge {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 90, 28, 0.08);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    width: fit-content;
    font-weight: 500;
    color: #e55a1c;
}

.sp-image-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.sp-image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.sp-image-card:hover img {
    transform: scale(1.02);
}

.sp-image-card__caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ---------- INDUSTRIES GRID ---------- */
.sp-industries__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.sp-industry-card {
    background: white;
    border-radius: 1.5rem;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
    cursor: default;
}

.sp-industry-card i {
    font-size: 2rem;
    color: #e55a1c;
    margin-bottom: 0.8rem;
}

.sp-industry-card h4 {
    font-weight: 600;
}

.sp-industry-card:hover {
    transform: translateY(-6px);
    border-color: #e55a1c;
    box-shadow: 0 20px 25px -12px rgba(229, 90, 28, 0.15);
}

/* ---------- SERVICES ---------- */
.sp-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.sp-service {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid #edf2f7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.sp-service__icon {
    font-size: 2.2rem;
    color: #e55a1c;
    margin-bottom: 1.2rem;
}

.sp-service h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sp-service p {
    color: #4b5563;
}

.sp-service:hover {
    transform: translateY(-8px);
    border-color: #e55a1c20;
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.1);
}

/* ---------- TIMELINE ---------- */
.sp-timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
}

.sp-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e55a1c30;
}

.sp-timeline__item {
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.sp-timeline__right {
    margin-left: auto;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 2rem;
}

.sp-timeline__dot {
    position: absolute;
    right: -8px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #e55a1c;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e55a1c20;
    z-index: 2;
}

.sp-timeline__right .sp-timeline__dot {
    left: -8px;
    right: auto;
}

.sp-timeline__card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.08);
    width: 100%;
    transition: 0.3s;
}

.sp-timeline__card:hover {
    transform: scale(1.02);
}

.sp-timeline__year {
    display: inline-block;
    font-weight: 800;
    color: #e55a1c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* awards */
.sp-awards__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.sp-award {
    background: #fef2e8;
    padding: 1rem 2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.sp-partners {
    text-align: center;
    margin-top: 3rem;
}

.sp-partners__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-weight: 600;
    color: #1f2937;
}

/* mission vision */
.sp-mv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.sp-vision,
.sp-mission {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.sp-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: 1rem;
    color: #2d3a4b;
}

/* stats section */
.sp-stats__section {
    background: #0f172a;
    color: white;
}

.sp-stats__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.sp-stat-box {
    text-align: center;
    flex: 1;
}

.sp-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: #e55a1c;
}

.sp-stat-box span {
    font-size: 1rem;
    font-weight: 500;
}

/* CTA SECTION */
.sp-cta {
    background: linear-gradient(145deg, #fef6f0, #ffffff);
    padding: 5rem 0;
    text-align: center;
}

.sp-cta__inner {
    max-width: 800px;
}

.sp-cta__title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

.sp-cta__btn {
    background: #e55a1c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.sp-cta__btn:hover {
    background: #c2410c;
    gap: 18px;
    box-shadow: 0 12px 28px rgba(229, 90, 28, 0.3);
}

/* FOOTER */
.sp-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
}

.sp-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.sp-footer__logo {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.sp-footer__logo span {
    color: #e55a1c;
}

.sp-footer__social a {
    display: inline-flex;
    background: #1e293b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
    transition: 0.3s;
}

.sp-footer__social a:hover {
    background: #e55a1c;
    color: white;
}

.sp-footer__links h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sp-footer__links li {
    margin-bottom: 0.5rem;
}

.sp-footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    font-size: 0.8rem;
}

/* REVEAL ANIMATIONS */
.sp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sp-reveal.sp-visible {
    opacity: 1;
    transform: translateY(0);
}

.sp-reveal--delay {
    transition-delay: 0.15s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sp-about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sp-mv__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .sp-nav__links {
        display: none;
    }

    .sp-nav__toggle {
        display: flex;
    }

    .sp-nav__menu.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1.5rem;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .sp-nav__menu.active .sp-nav__links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .sp-timeline::before {
        left: 20px;
    }

    .sp-timeline__item,
    .sp-timeline__right {
        width: 100%;
        padding-left: 3rem;
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    .sp-timeline__dot {
        left: 12px !important;
        right: auto;
    }

    .sp-hero__stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .sp-stats__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero {
        display: grid;
    }

    #chatbot {
        display: none;
    }
}


/* our leader */

/* ============================================
   STIMULUS LEADER PROFILE - GLOBAL STYLES
   Prefix: stimulus-leader-
   Primary color: #e55a1c
   ============================================ */

body.stimulus-leader-body {
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}



button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- PRELOADER ---------- */
.stimulus-leader-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.stimulus-leader-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.stimulus-leader-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s infinite;
}

.stimulus-leader-preloader__logo span {
    color: white;
}

.stimulus-leader-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.stimulus-leader-preloader__fill {
    width: 0;
    height: 100%;
    background: #e55a1c;
    animation: fillBar 1.5s ease forwards;
}

@keyframes fillBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER ---------- */
.stimulus-leader-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stimulus-leader-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.stimulus-leader-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.stimulus-leader-nav__logo span {
    color: #e55a1c;
}

.stimulus-leader-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.stimulus-leader-hamburger,
.stimulus-leader-hamburger::before,
.stimulus-leader-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.stimulus-leader-nav__toggle.active .stimulus-leader-hamburger {
    transform: rotate(45deg);
}

.stimulus-leader-nav__toggle.active .stimulus-leader-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.stimulus-leader-nav__toggle.active .stimulus-leader-hamburger::after {
    opacity: 0;
}

.stimulus-leader-nav__menu {
    display: flex;
}

.stimulus-leader-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.stimulus-leader-nav__link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.stimulus-leader-nav__link:hover,
.stimulus-leader-nav__link.active {
    color: #e55a1c;
}

.stimulus-leader-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e55a1c;
    transition: width 0.3s;
}

.stimulus-leader-nav__link:hover::after,
.stimulus-leader-nav__link.active::after {
    width: 100%;
}

/* ---------- HERO ---------- */
.stimulus-leader-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: linear-gradient(135deg, #fef9f5 0%, #ffffff 100%);
    position: relative;
}

.stimulus-leader-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stimulus-leader-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 90, 28, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.stimulus-leader-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #e55a1c;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.stimulus-leader-hero__title {
    font-size: clamp(2.5rem, 6vw, 2.625rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stimulus-leader-hero__subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
    font-weight: 400;
}

.stimulus-leader-hero__quote {
    display: flex;
    gap: 1rem;
    border-left: 3px solid #e55a1c;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.stimulus-leader-hero__quote i {
    font-size: 2rem;
    color: #e55a1c20;
}

.stimulus-leader-hero__quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #374151;
}

.stimulus-leader-hero__social {
    display: flex;
    gap: 1rem;
}

.stimulus-leader-hero__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s;
}

.stimulus-leader-hero__social a:hover {
    border-color: #e55a1c;
    color: #e55a1c;
    transform: translateY(-2px);
}

.stimulus-leader-image-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
}

.stimulus-leader-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.stimulus-leader-image-card__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e55a1c20, transparent);
    mix-blend-mode: overlay;
}

.stimulus-leader-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: #6b7280;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ---------- STATS ---------- */
.stimulus-leader-stats {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}

.stimulus-leader-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stimulus-leader-stat {
    background: #fef9f5;
    padding: 1.5rem;
    border-radius: 1.5rem;
    transition: transform 0.3s;
}

.stimulus-leader-stat:hover {
    transform: translateY(-5px);
}

.stimulus-leader-stat__icon {
    font-size: 2rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: inline-block;
}

.stimulus-leader-stat__number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
}

.stimulus-leader-stat__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* ---------- ABOUT ---------- */
.stimulus-leader-about {
    padding: 5rem 0;
}

.stimulus-leader-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stimulus-leader-section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.stimulus-leader-section__title span {
    color: #e55a1c;
}

.stimulus-leader-about__sub {
    font-size: 1.1rem;
    color: #e55a1c;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.stimulus-leader-about__text p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.stimulus-leader-about__image img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

/* ---------- TIMELINE ---------- */
.stimulus-leader-timeline {
    padding: 5rem 0;
    background: #fef9f5;
}

.stimulus-leader-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.stimulus-leader-section__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e55a1c;
    margin-bottom: 0.5rem;
}

.stimulus-leader-section__sub {
    max-width: 600px;
    margin: 1rem auto 0;
    color: #6b7280;
}

.stimulus-leader-timeline__wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.stimulus-leader-timeline__wrapper::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e55a1c30;
}

.stimulus-leader-timeline__item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2.5rem;
}

.stimulus-leader-timeline__dot {
    position: absolute;
    left: 1.5rem;
    top: 1rem;
    width: 14px;
    height: 14px;
    background: #e55a1c;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e55a1c30;
    transition: transform 0.3s;
}

.stimulus-leader-timeline__item:hover .stimulus-leader-timeline__dot {
    transform: scale(1.3);
}

.stimulus-leader-timeline__card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.stimulus-leader-timeline__card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 24px -12px rgba(229, 90, 28, 0.15);
}

.stimulus-leader-timeline__card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stimulus-leader-timeline__company {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e55a1c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stimulus-leader-timeline__card p {
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ---------- MEDIA GRID ---------- */
.stimulus-leader-media {
    padding: 5rem 0;
}

.stimulus-leader-media__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stimulus-leader-media__card {
    background: white;
    border: 1px solid #eef2ff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-weight: 600;
}

.stimulus-leader-media__card span {
    font-size: 1rem;
}

.stimulus-leader-media__card i {
    font-size: 1.5rem;
    color: #e55a1c;
    opacity: 0.6;
}

.stimulus-leader-media__card:hover {
    transform: translateY(-5px);
    border-color: #e55a1c;
    box-shadow: 0 12px 20px -12px rgba(229, 90, 28, 0.2);
}

.stimulus-leader-media__card--featured {
    background: #e55a1c;
    color: white;
    border-color: #e55a1c;
}

.stimulus-leader-media__card--featured i {
    color: white;
    opacity: 1;
}

/* ---------- GALLERY ---------- */
.stimulus-leader-gallery {
    padding: 5rem 0;
    background: #fef9f5;
}

.stimulus-leader-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stimulus-leader-gallery__item {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s;
}

.stimulus-leader-gallery__item:hover {
    transform: translateY(-8px);
}

.stimulus-leader-gallery__item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s;
}

.stimulus-leader-gallery__item:hover img {
    transform: scale(1.02);
}

.stimulus-leader-gallery__item p {
    padding: 1rem;
    font-size: 0.85rem;
    color: #4b5563;
    border-left: 3px solid #e55a1c;
    margin: 0.5rem;
}

/* ---------- HONORARY DOCTORATE ---------- */
.stimulus-leader-honor {
    padding: 4rem 0;
}

.stimulus-leader-honor__card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 25px 40px -12px rgba(229, 90, 28, 0.15);
    border: 1px solid #ffe6dc;
}

.stimulus-leader-honor__icon {
    width: 70px;
    height: 70px;
    background: #e55a1c10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #e55a1c;
}

.stimulus-leader-honor__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e55a1c;
    font-weight: 700;
}

.stimulus-leader-honor__card h3 {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.stimulus-leader-honor__card p {
    color: #4b5563;
    font-size: 1.1rem;
}

.stimulus-leader-honor__univ {
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ---------- QUOTE ---------- */
.stimulus-leader-quote {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #fef9f5);
}

.stimulus-leader-quote i {
    font-size: 3rem;
    color: #e55a1c20;
    margin-bottom: 1rem;
}

.stimulus-leader-quote p {
    font-size: 1.4rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: #1f2937;
}

/* ---------- CLOSING ---------- */
.stimulus-leader-closing {
    padding: 4rem 0 6rem;
    text-align: center;
}

.stimulus-leader-closing__line {
    width: 60px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 auto 2rem;
}

.stimulus-leader-closing p {
    max-width: 700px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.8;
}

/* ---------- FOOTER ---------- */
.stimulus-leader-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ---------- SCROLL REVEAL ---------- */
.stimulus-leader-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.stimulus-leader-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {

    .stimulus-leader-hero__grid,
    .stimulus-leader-about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stimulus-leader-hero__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .stimulus-leader-nav__toggle {
        display: flex;
    }

    .stimulus-leader-nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .stimulus-leader-nav__menu.active {
        left: 0;
    }

    .stimulus-leader-nav__links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stimulus-leader-timeline__wrapper::before {
        left: 1rem;
    }

    .stimulus-leader-timeline__item {
        padding-left: 2.5rem;
    }

    .stimulus-leader-timeline__dot {
        left: 0.5rem;
    }

    .stimulus-leader-stats__grid {
        gap: 1rem;
    }

    .stimulus-leader-media__grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   STIMULUS PORTFOLIO - GLOBAL STYLES
   Prefix: spf-
   Primary color: #e55a1c
   ============================================ */

body.spf-body {
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}



button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- PRELOADER ---------- */
.spf-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.spf-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spf-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: spfPulse 1.5s infinite;
}

.spf-preloader__logo span {
    color: white;
}

.spf-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.spf-preloader__fill {
    width: 0;
    height: 100%;
    background: #e55a1c;
    animation: spfFillBar 1.5s ease forwards;
}

@keyframes spfFillBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes spfPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER ---------- */
.spf-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spf-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.spf-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.spf-nav__logo span {
    color: #e55a1c;
}

.spf-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.spf-hamburger,
.spf-hamburger::before,
.spf-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.spf-nav__toggle.active .spf-hamburger {
    transform: rotate(45deg);
}

.spf-nav__toggle.active .spf-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.spf-nav__toggle.active .spf-hamburger::after {
    opacity: 0;
}

.spf-nav__menu {
    display: flex;
}

.spf-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.spf-nav__link {
    font-weight: 500;
    transition: color 0.3s;
}

.spf-nav__link:hover {
    color: #e55a1c;
}

/* ---------- HERO ---------- */
.spf-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.spf-hero__content {
    max-width: 800px;
}

.spf-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 90, 28, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.spf-hero__title {
    font-size: clamp(2.5rem, 6vw, 2.625rem);
    
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.spf-hero__title span {
    background: linear-gradient(135deg, #8b5cf6, #e55a1c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.spf-hero__sub {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.spf-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.spf-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #e55a1c, transparent);
}

/* ---------- FILTER BAR ---------- */
.spf-filter-bar {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f0f0f0;
    padding: 0.8rem 0;
}

.spf-filter__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.spf-filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    background: #f3f4f6;
    color: #4b5563;
}

.spf-filter-btn.active,
.spf-filter-btn:hover {
    background: #e55a1c;
    color: white;
    box-shadow: 0 4px 12px rgba(229, 90, 28, 0.3);
    transform: translateY(-1px);
}

/* ---------- FEATURED PROJECTS ---------- */
.spf-featured {
    padding: 5rem 0;
}

.spf-featured__grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.spf-project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spf-project-media {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.spf-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.spf-project-card:hover .spf-project-media img {
    transform: scale(1.03);
}

.spf-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 90, 28, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.spf-project-card:hover .spf-project-overlay {
    opacity: 1;
}

.spf-view-btn {
    background: white;
    color: #e55a1c;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    transform: translateY(20px);
    transition: all 0.4s;
}

.spf-project-card:hover .spf-view-btn {
    transform: translateY(0);
}

.spf-project-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spf-project-tag {
    display: inline-block;
    background: #f3e8ff;
    color: #e55a1c;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    width: fit-content;
}

.spf-tag-orange {
    background: #fff0e7;
    color: #e55a1c;
}

.spf-project-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
}

.spf-project-desc {
    color: #4b5563;
}

.spf-project-highlight {
    border-left: 3px solid #e55a1c;
    padding-left: 1rem;
    font-style: italic;
    color: #4b5563;
}

.spf-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #e55a1c;
    transition: gap 0.3s;
}

.spf-project-link:hover {
    gap: 0.8rem;
}

.spf-link-orange {
    color: #e55a1c;
}

/* ---------- GRID SECTION ---------- */
.spf-grid-section {
    padding: 5rem 0;
    background: #faf9fe;
}

.spf-grid__header {
    text-align: left;
    margin-bottom: 3rem;
}

.spf-grid__header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.spf-grid__header p {
    color: #6b7280;
    max-width: 500px;
}

.spf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spf-grid-item {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.spf-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.spf-grid-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.spf-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.spf-grid-item:hover .spf-grid-media img {
    transform: scale(1.05);
}

.spf-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 90, 28, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
}

.spf-grid-item:hover .spf-grid-overlay {
    opacity: 1;
}

.spf-grid-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e55a1c;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s;
}

.spf-grid-item:hover .spf-grid-view {
    opacity: 1;
}

.spf-grid-info {
    padding: 1.5rem;
}

.spf-grid-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    background: #fef2e8;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.spf-grid-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.spf-grid-info p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ---------- CASE STUDY (DEEP DIVE) ---------- */
.spf-case {
    padding: 5rem 0;
    background: white;
}

.spf-case__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spf-case__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    margin-bottom: 1rem;
}

.spf-case__text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #111827;
}

.spf-case__stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spf-case-stat {
    background: #f8f8fc;
    padding: 1.2rem;
    border-radius: 1rem;
    border-left: 3px solid #e55a1c;
}

.spf-case-stat__label {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #e55a1c;
    display: block;
    margin-bottom: 0.5rem;
}

.spf-case-stat p {
    color: #4b5563;
    font-size: 0.9rem;
}

.spf-case-stat--highlight {
    background: #e55a1c;
    border-left-color: white;
}

.spf-case-stat--highlight p,
.spf-case-stat--highlight .spf-case-stat__label {
    color: white;
}

.spf-case__image {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
}

.spf-case__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- CTA SECTION ---------- */
.spf-cta {
    padding: 4rem 0 6rem;
    background: white;
}

.spf-cta__card {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border-radius: 3rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.2);
}

.spf-cta__text h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.spf-cta__text span {
    color: #e55a1c;
}

.spf-cta__action p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #374151;
}

.spf-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #e55a1c;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s;
}

.spf-cta__btn:hover {
    background: #c2410c;
    gap: 1rem;
    box-shadow: 0 12px 20px -8px rgba(229, 90, 28, 0.4);
}

/* ---------- FOOTER ---------- */
.spf-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .spf-project-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spf-case__wrapper {
        grid-template-columns: 1fr;
    }

    .spf-cta__card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .spf-nav__toggle {
        display: flex;
    }

    .spf-nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .spf-nav__menu.active {
        left: 0;
    }

    .spf-nav__links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .spf-filter__container {
        gap: 0.5rem;
    }

    .spf-filter-btn {
        padding: 0.3rem 1rem;
        font-size: 0.7rem;
    }

    .spf-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   STIMULUS INSIGHTS - BLOG STYLES
   Prefix: spi-
   Primary color: #e55a1c
   ============================================ */

body.spi-body {
    
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}



button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- PRELOADER ---------- */
.spi-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.spi-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spi-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: spiPulse 1.5s infinite;
}

.spi-preloader__logo span {
    color: white;
}

.spi-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.spi-preloader__fill {
    width: 0;
    height: 100%;
    background: #e55a1c;
    animation: spiFillBar 1.5s ease forwards;
}

@keyframes spiFillBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes spiPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER ---------- */
.spi-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spi-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.spi-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.spi-nav__logo span {
    color: #e55a1c;
}

.spi-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.spi-hamburger,
.spi-hamburger::before,
.spi-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.spi-nav__toggle.active .spi-hamburger {
    transform: rotate(45deg);
}

.spi-nav__toggle.active .spi-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.spi-nav__toggle.active .spi-hamburger::after {
    opacity: 0;
}

.spi-nav__menu {
    display: flex;
}

.spi-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.spi-nav__link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.spi-nav__link:hover,
.spi-nav__link.active {
    color: #e55a1c;
}

.spi-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e55a1c;
    transition: width 0.3s;
}

.spi-nav__link:hover::after,
.spi-nav__link.active::after {
    width: 100%;
}

/* ---------- HERO ---------- */
.spi-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
    position: relative;
    padding-top: 5rem;
}

.spi-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 90, 28, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.spi-hero__title {
    font-size: clamp(2rem, 6vw, 2.625rem);
    
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.spi-hero__title span {
    background: linear-gradient(135deg, #8b5cf6, #e55a1c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.spi-hero__sub {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.spi-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.spi-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #e55a1c, transparent);
}

/* ---------- FILTER BAR ---------- */
.spi-filter-bar {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f0f0f0;
    padding: 0.8rem 0;
}

.spi-filter__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.spi-filter__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spi-filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    background: #f3f4f6;
    color: #4b5563;
}

.spi-filter-btn.active,
.spi-filter-btn:hover {
    background: #e55a1c;
    color: white;
    box-shadow: 0 4px 12px rgba(229, 90, 28, 0.3);
}

.spi-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    padding: 0.5rem 1rem;
}

.spi-search i {
    color: #9ca3af;
    font-size: 0.9rem;
}

.spi-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.8rem;
    min-width: 180px;
}

/* ---------- FEATURED ARTICLE ---------- */
.spi-featured {
    padding: 4rem 0;
}

.spi-featured__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.spi-featured__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.spi-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.spi-featured__card:hover .spi-featured__media img {
    transform: scale(1.03);
}

.spi-featured__overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 90, 28, 0.3);
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.4s;
}

.spi-featured__card:hover .spi-featured__overlay {
    opacity: 1;
}

.spi-featured__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff, #faf9fe);
}

.spi-featured__meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.spi-tag {
    background: #f3e8ff;
    color: #e55a1c;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    display: inline-block;
}

.spi-featured__content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.spi-featured__card:hover h2 {
    color: #e55a1c;
}

.spi-featured__content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.spi-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #e55a1c;
    transition: gap 0.3s;
}

.spi-read-more:hover {
    gap: 0.8rem;
}

/* ---------- GRID SECTION ---------- */
.spi-grid {
    padding: 3rem 0 4rem;
    background: #faf9fe;
}

.spi-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.spi-post {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2ff;
}

.spi-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.spi-post__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.spi-post__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.spi-post:hover .spi-post__media img {
    transform: scale(1.05);
}

.spi-post__overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 90, 28, 0.4);
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s;
}

.spi-post:hover .spi-post__overlay {
    opacity: 1;
}

.spi-post__content {
    padding: 1.5rem;
}

.spi-post__content h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    transition: color 0.3s;
}

.spi-post:hover h3 {
    color: #e55a1c;
}

.spi-post__content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.spi-load-more {
    text-align: center;
    margin-top: 3rem;
}

.spi-load-more button {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s;
}

.spi-load-more button:hover {
    border-color: #e55a1c;
    color: #e55a1c;
    box-shadow: 0 4px 12px rgba(229, 90, 28, 0.1);
}

.spi-load-more button i {
    margin-left: 0.5rem;
    transition: transform 0.5s;
}

.spi-load-more button:hover i {
    transform: rotate(180deg);
}

/* ---------- NEWSLETTER ---------- */
.spi-newsletter {
    padding: 5rem 0;
}

.spi-newsletter__card {
    background: #f3efff;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #e5d9ff;
}

.spi-newsletter__icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #e55a1c;
    transform: rotate(3deg);
}

.spi-newsletter__card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.spi-newsletter__card p {
    color: #4b5563;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.spi-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.spi-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
}

.spi-input-group i {
    color: #9ca3af;
}

.spi-input-group input {
    border: none;
    outline: none;
    width: 100%;
}

.spi-newsletter__form button {
    background: #e55a1c;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.spi-newsletter__form button:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

.spi-newsletter__card small {
    display: block;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: #6b7280;
}

/* ---------- CTA SECTION ---------- */
.spi-cta {
    padding: 4rem 0 6rem;
}

.spi-cta__card {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border-radius: 3rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #e5d9ff;
    box-shadow: 0 20px 30px -12px rgba(139, 92, 246, 0.15);
}

.spi-cta__card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.spi-cta__btn {
    background: #111827;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.spi-cta__btn:hover {
    background: #e55a1c;
    gap: 1rem;
    transform: scale(1.02);
}

/* ---------- FOOTER ---------- */
.spi-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .spi-featured__card {
        grid-template-columns: 1fr;
    }

    .spi-filter__container {
        flex-direction: column;
        align-items: stretch;
    }

    .spi-filter__tabs {
        justify-content: center;
    }

    .spi-search {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .spi-nav__toggle {
        display: flex;
    }

    .spi-nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .spi-nav__menu.active {
        left: 0;
    }

    .spi-nav__links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .spi-grid__wrapper {
        grid-template-columns: 1fr;
    }

    .spi-newsletter__form {
        flex-direction: column;
    }
}


/* ============================================
   STIMULUS INSIGHTS - BLOG STYLES
   Prefix: spi-
   Primary color: #e55a1c
   ============================================ */


body.spi-body {
    
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}



button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- PRELOADER ---------- */
.spi-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.spi-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spi-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: spiPulse 1.5s infinite;
}

.spi-preloader__logo span {
    color: white;
}

.spi-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.spi-preloader__fill {
    width: 0;
    height: 100%;
    background: #e55a1c;
    animation: spiFillBar 1.5s ease forwards;
}

@keyframes spiFillBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes spiPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER ---------- */
.spi-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spi-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.spi-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.spi-nav__logo span {
    color: #e55a1c;
}

.spi-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.spi-hamburger,
.spi-hamburger::before,
.spi-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.spi-nav__toggle.active .spi-hamburger {
    transform: rotate(45deg);
}

.spi-nav__toggle.active .spi-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.spi-nav__toggle.active .spi-hamburger::after {
    opacity: 0;
}

.spi-nav__menu {
    display: flex;
}

.spi-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.spi-nav__link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.spi-nav__link:hover,
.spi-nav__link.active {
    color: #e55a1c;
}

.spi-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e55a1c;
    transition: width 0.3s;
}

.spi-nav__link:hover::after,
.spi-nav__link.active::after {
    width: 100%;
}

/* ---------- HERO ---------- */
.spi-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
    position: relative;
    padding-top: 5rem;
}

.spi-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 90, 28, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.spi-hero__title {
    font-size: clamp(2rem, 6vw, 2.625rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.spi-hero__title span {
    background: linear-gradient(135deg, #8b5cf6, #e55a1c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.spi-hero__sub {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.spi-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.spi-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #e55a1c, transparent);
}

/* ---------- FILTER BAR ---------- */
.spi-filter-bar {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f0f0f0;
    padding: 0.8rem 0;
}

.spi-filter__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.spi-filter__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spi-filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    background: #f3f4f6;
    color: #4b5563;
}

.spi-filter-btn.active,
.spi-filter-btn:hover {
    background: #e55a1c;
    color: white;
    box-shadow: 0 4px 12px rgba(229, 90, 28, 0.3);
}

.spi-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    padding: 0.5rem 1rem;
}

.spi-search i {
    color: #9ca3af;
    font-size: 0.9rem;
}

.spi-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.8rem;
    min-width: 180px;
}

/* ---------- FEATURED ARTICLE ---------- */
.spi-featured {
    padding: 4rem 0;
}

.spi-featured__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.spi-featured__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.spi-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.spi-featured__card:hover .spi-featured__media img {
    transform: scale(1.03);
}

.spi-featured__overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 90, 28, 0.3);
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.4s;
}

.spi-featured__card:hover .spi-featured__overlay {
    opacity: 1;
}

.spi-featured__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff, #faf9fe);
}

.spi-featured__meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.spi-tag {
    background: #f3e8ff;
    color: #e55a1c;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    display: inline-block;
}

.spi-featured__content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.spi-featured__card:hover h2 {
    color: #e55a1c;
}

.spi-featured__content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.spi-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #e55a1c;
    transition: gap 0.3s;
}

.spi-read-more:hover {
    gap: 0.8rem;
}

/* ---------- GRID SECTION ---------- */
.spi-grid {
    padding: 3rem 0 4rem;
    background: #faf9fe;
}

.spi-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.spi-post {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2ff;
}

.spi-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.spi-post__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.spi-post__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.spi-post:hover .spi-post__media img {
    transform: scale(1.05);
}

.spi-post__overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 90, 28, 0.4);
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s;
}

.spi-post:hover .spi-post__overlay {
    opacity: 1;
}

.spi-post__content {
    padding: 1.5rem;
}

.spi-post__content h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    transition: color 0.3s;
}

.spi-post:hover h3 {
    color: #e55a1c;
}

.spi-post__content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.spi-load-more {
    text-align: center;
    margin-top: 3rem;
}

.spi-load-more button {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s;
}

.spi-load-more button:hover {
    border-color: #e55a1c;
    color: #e55a1c;
    box-shadow: 0 4px 12px rgba(229, 90, 28, 0.1);
}

.spi-load-more button i {
    margin-left: 0.5rem;
    transition: transform 0.5s;
}

.spi-load-more button:hover i {
    transform: rotate(180deg);
}

/* ---------- NEWSLETTER ---------- */
.spi-newsletter {
    padding: 5rem 0;
}

.spi-newsletter__card {
    background: #f3efff;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #e5d9ff;
}

.spi-newsletter__icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #e55a1c;
    transform: rotate(3deg);
}

.spi-newsletter__card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.spi-newsletter__card p {
    color: #4b5563;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.spi-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.spi-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
}

.spi-input-group i {
    color: #9ca3af;
}

.spi-input-group input {
    border: none;
    outline: none;
    width: 100%;
}

.spi-newsletter__form button {
    background: #e55a1c;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.spi-newsletter__form button:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

.spi-newsletter__card small {
    display: block;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: #6b7280;
}

/* ---------- CTA SECTION ---------- */
.spi-cta {
    padding: 4rem 0 6rem;
}

.spi-cta__card {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border-radius: 3rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #e5d9ff;
    box-shadow: 0 20px 30px -12px rgba(139, 92, 246, 0.15);
}

.spi-cta__card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.spi-cta__btn {
    background: #111827;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.spi-cta__btn:hover {
    background: #e55a1c;
    gap: 1rem;
    transform: scale(1.02);
}

/* ---------- FOOTER ---------- */
.spi-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .spi-featured__card {
        grid-template-columns: 1fr;
    }

    .spi-filter__container {
        flex-direction: column;
        align-items: stretch;
    }

    .spi-filter__tabs {
        justify-content: center;
    }

    .spi-search {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .spi-nav__toggle {
        display: flex;
    }

    .spi-nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .spi-nav__menu.active {
        left: 0;
    }

    .spi-nav__links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .spi-grid__wrapper {
        grid-template-columns: 1fr;
    }

    .spi-newsletter__form {
        flex-direction: column;
    }
}

/* ============================================
   STRATEGIC BUSINESS INSIGHTS - STYLES
   Prefix: sbi-
   Primary color: #e55a1c
   ============================================ */

body.sbi-body {
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}



button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- PRELOADER ---------- */
.sbi-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.sbi-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sbi-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: sbiPulse 1.5s infinite;
}

.sbi-preloader__logo span {
    color: white;
}

.sbi-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.sbi-preloader__fill {
    width: 0;
    height: 100%;
    background: #e55a1c;
    animation: sbiFillBar 1.5s ease forwards;
}

@keyframes sbiFillBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes sbiPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER ---------- */
.sbi-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sbi-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.sbi-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.sbi-nav__logo span {
    color: #e55a1c;
}

.sbi-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.sbi-hamburger,
.sbi-hamburger::before,
.sbi-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.sbi-nav__toggle.active .sbi-hamburger {
    transform: rotate(45deg);
}

.sbi-nav__toggle.active .sbi-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.sbi-nav__toggle.active .sbi-hamburger::after {
    opacity: 0;
}

.sbi-nav__menu {
    display: flex;
}

.sbi-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.sbi-nav__link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.sbi-nav__link:hover,
.sbi-nav__link.active {
    color: #e55a1c;
}

.sbi-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e55a1c;
    transition: width 0.3s;
}

.sbi-nav__link:hover::after,
.sbi-nav__link.active::after {
    width: 100%;
}

/* ---------- HERO ---------- */
.sbi-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fef9f5, #ffffff);
    padding-top: 5rem;
}

.sbi-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sbi-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 90, 28, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.sbi-hero__title {
    font-size: clamp(2rem, 5vw, 2.625rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.sbi-hero__title span {
    background: linear-gradient(135deg, #8b5cf6, #e55a1c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.sbi-hero__desc {
    color: #4b5563;
    max-width: 500px;
    margin-bottom: 2rem;
}

.sbi-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s;
}

.sbi-btn-primary {
    background: #e55a1c;
    color: white;
    box-shadow: 0 4px 12px rgba(229, 90, 28, 0.3);
}

.sbi-btn-primary:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

.sbi-btn-outline {
    border: 1px solid #e5e7eb;
    background: white;
    color: #4b5563;
}

.sbi-btn-outline:hover {
    border-color: #e55a1c;
    color: #e55a1c;
}

.sbi-hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sbi-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.sbi-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #e55a1c, transparent);
}

/* Viz Card */
.sbi-viz-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
}

.sbi-viz-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.sbi-viz-label {
    font-size: 0.7rem;
    color: #9ca3af;
    text-transform: uppercase;
}

.sbi-viz-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
}

.sbi-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 180px;
}

.sbi-chart-bar {
    flex: 1;
    background: linear-gradient(to top, #e55a1c, #f97316);
    border-radius: 4px 4px 0 0;
    height: calc(var(--value) * 1%);
    min-height: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.sbi-chart-bar:hover {
    filter: brightness(1.1);
    transform: scaleY(1.02);
}

.sbi-chart-bar .sbi-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.sbi-chart-bar:hover .sbi-tooltip {
    opacity: 1;
}

.sbi-viz-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sbi-badge-1 {
    bottom: -1rem;
    left: -1rem;
}

.sbi-badge-2 {
    top: -1rem;
    right: -1rem;
}

.sbi-badge-1 span,
.sbi-badge-2 span {
    display: block;
    font-size: 0.6rem;
    color: #6b7280;
    font-weight: normal;
}

/* ---------- DATA SECTION ---------- */
.sbi-data-driven {
    padding: 4rem 0;
}

.sbi-data__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.sbi-data__title h2 {
    font-size: 2rem;
    font-weight: 800;
}

.sbi-data__title span {
    color: #e55a1c;
}

.sbi-title-line {
    width: 60px;
    height: 3px;
    background: #e55a1c;
    margin-top: 1rem;
}

.sbi-data__text p {
    margin-bottom: 1rem;
    color: #4b5563;
}

/* ---------- SECTION HEADER ---------- */
.sbi-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.sbi-section__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e55a1c;
}

.sbi-section__title {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

/* ---------- CAPABILITIES ---------- */
.sbi-capabilities {
    padding: 4rem 0;
    background: #faf9fe;
}

.sbi-cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.sbi-cap-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #eef2ff;
    transition: all 0.3s;
}

.sbi-cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
    border-color: #e55a1c;
}

.sbi-cap-card i {
    font-size: 2rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: block;
}

.sbi-cap-card h3 {
    margin-bottom: 0.5rem;
}

/* ---------- METHODOLOGY ---------- */
.sbi-methodology {
    padding: 4rem 0;
}

.sbi-method-card {
    background: linear-gradient(135deg, #faf9fe, white);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid #eef2ff;
}

.sbi-method-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
    text-align: center;
}

.sbi-method-stats div i {
    font-size: 1.5rem;
    color: #e55a1c;
    display: block;
    margin-bottom: 0.5rem;
}

.sbi-method-stats span {
    font-weight: 700;
    display: block;
}

.sbi-method-stats small {
    font-size: 0.7rem;
    color: #6b7280;
}

.sbi-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
    height: 250px;
    justify-content: center;
}

.sbi-bar {
    width: 60px;
    background: linear-gradient(to top, #e55a1c, #f97316);
    border-radius: 8px 8px 0 0;
    height: calc(var(--value) * 2.5px);
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}

.sbi-bar:hover {
    opacity: 0.85;
    transform: scaleX(1.02);
}

.sbi-bar-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.2s;
    pointer-events: none;
}

.sbi-bar:hover .sbi-bar-tooltip {
    opacity: 1;
}

/* ---------- REPORTS ---------- */
.sbi-reports {
    padding: 4rem 0;
    background: #f9fafb;
}

.sbi-reports__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.sbi-link {
    color: #e55a1c;
    font-weight: 600;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sbi-link:hover {
    gap: 0.8rem;
}

.sbi-reports__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.sbi-report-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #eef2ff;
}

.sbi-report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.sbi-report-bg {
    background: linear-gradient(135deg, #f3e8ff, #e55a1c20);
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.sbi-report-bg span {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.2rem 0.8rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #e55a1c;
}

.sbi-report-card h3 {
    padding: 1rem 1.5rem 0.5rem;
}

.sbi-report-card p {
    padding: 0 1.5rem;
    color: #4b5563;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.sbi-report-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.sbi-btn-dark {
    background: #111827;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.sbi-btn-dark:hover {
    background: #e55a1c;
}

.sbi-icon-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.sbi-icon-btn:hover {
    border-color: #e55a1c;
    color: #e55a1c;
}

/* ---------- INDUSTRY FOCUS ---------- */
.sbi-industry {
    padding: 4rem 0;
}

.sbi-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.sbi-industry-item {
    background: #f3f0ff;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.sbi-industry-item i {
    font-size: 1.5rem;
    color: #e55a1c;
    margin-bottom: 0.5rem;
    display: block;
}

.sbi-industry-item span {
    font-weight: 600;
}

.sbi-industry-item:hover {
    background: #e55a1c10;
    transform: translateY(-2px);
}

/* ---------- STEPS ---------- */
.sbi-steps {
    padding: 4rem 0;
    background: #faf9fe;
}

.sbi-steps__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.sbi-step {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #eef2ff;
}

.sbi-step-icon {
    width: 50px;
    height: 50px;
    background: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: #e55a1c;
    font-size: 1.2rem;
}

.sbi-step-num {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.sbi-step h4 {
    font-size: 0.9rem;
}

/* ---------- VALUE PROPOSITION ---------- */
.sbi-value {
    padding: 4rem 0;
}

.sbi-value__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sbi-value__grid h2 {
    font-size: 2rem;
    font-weight: 800;
}

.sbi-value__grid h2 span {
    color: #e55a1c;
}

.sbi-value__list div {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sbi-value__list i {
    color: #e55a1c;
    font-size: 1.2rem;
}

/* ---------- CTA ---------- */
.sbi-cta {
    padding: 4rem 0 6rem;
}

.sbi-cta__card {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border-radius: 3rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #e5d9ff;
}

.sbi-cta__card i {
    font-size: 3rem;
    color: #e55a1c;
    margin-bottom: 1rem;
}

.sbi-cta__card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* ---------- FOOTER ---------- */
.sbi-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .sbi-hero__grid {
        grid-template-columns: 1fr;
    }

    .sbi-data__grid {
        grid-template-columns: 1fr;
    }

    .sbi-value__grid {
        grid-template-columns: 1fr;
    }

    .sbi-steps__wrapper {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .sbi-nav__toggle {
        display: flex;
    }

    .sbi-nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 2rem;
        transition: left 0.3s;
    }

    .sbi-nav__menu.active {
        left: 0;
    }

    .sbi-nav__links {
        flex-direction: column;
        align-items: center;
    }

    .sbi-chart {
        height: 120px;
    }

    .sbi-bar-chart {
        height: 150px;
    }
}

/* ============================================
   STIMULUS PRESS ROOM - STYLES (FIXED)
   Prefix: spr-
   Primary color: #e55a1c
   ============================================ */


body.spr-body {
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}



button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- PRELOADER ---------- */
.spr-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.spr-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spr-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: sprPulse 1.5s infinite;
}

.spr-preloader__logo span {
    color: white;
}

.spr-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.spr-preloader__fill {
    width: 0;
    height: 100%;
    background: #e55a1c;
    animation: sprFillBar 1.5s ease forwards;
}

@keyframes sprFillBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes sprPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER ---------- */
.spr-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spr-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.spr-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.spr-nav__logo span {
    color: #e55a1c;
}

.spr-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.spr-hamburger,
.spr-hamburger::before,
.spr-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.spr-nav__toggle.active .spr-hamburger {
    transform: rotate(45deg);
}

.spr-nav__toggle.active .spr-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.spr-nav__toggle.active .spr-hamburger::after {
    opacity: 0;
}

.spr-nav__menu {
    display: flex;
}

.spr-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.spr-nav__link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.spr-nav__link:hover,
.spr-nav__link.active {
    color: #e55a1c;
}

.spr-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e55a1c;
    transition: width 0.3s;
}

.spr-nav__link:hover::after,
.spr-nav__link.active::after {
    width: 100%;
}

/* ---------- HERO ---------- */
.spr-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fef9f5, #ffffff);
    padding-top: 5rem;
}

.spr-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 90, 28, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.spr-hero__title {
    font-size: clamp(2rem, 6vw, 2.625rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.spr-hero__sub {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- FEATURED ARTICLE ---------- */
.spr-featured {
    padding: 4rem 0;
}

.spr-featured__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.spr-featured__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.spr-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.spr-featured__card:hover .spr-featured__media img {
    transform: scale(1.02);
}

.spr-featured__overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 90, 28, 0.2);
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s;
}

.spr-featured__card:hover .spr-featured__overlay {
    opacity: 1;
}

.spr-featured__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spr-featured__tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.spr-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border-radius: 100px;
    display: inline-block;
}

.spr-tag--featured {
    background: #e55a1c;
    color: white;
}

.spr-tag--light {
    background: #f3e8ff;
    color: #e55a1c;
}

.spr-featured__content h2 {
    font-size: 1.6rem;
    transition: color 0.3s;
}

.spr-featured__card:hover h2 {
    color: #e55a1c;
}

.spr-featured__content p {
    color: #4b5563;
}

.spr-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #e55a1c;
    transition: gap 0.3s;
}

.spr-read-more:hover {
    gap: 0.8rem;
}

/* ---------- COVERAGE SECTION ---------- */
.spr-coverage {
    padding: 4rem 0;
    background: #faf9fe;
}

.spr-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
}

.spr-section__header h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

.spr-coverage__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.spr-article-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #eef2ff;
}

.spr-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.spr-article-card__media {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.spr-article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.spr-article-card:hover .spr-article-card__media img {
    transform: scale(1.03);
}

.spr-article-card__content {
    padding: 1.5rem;
}

.spr-article-card__content h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    transition: color 0.3s;
}

.spr-article-card:hover h3 {
    color: #e55a1c;
}

.spr-article-card__content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* ---------- MENTIONS (AS FEATURED IN) ---------- */
.spr-mentions {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #eef2ff;
    border-bottom: 1px solid #eef2ff;
}

.spr-mentions h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.spr-mentions__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #9ca3af;
}

.spr-mentions__grid span {
    transition: color 0.3s;
    cursor: default;
}

.spr-mentions__grid span:hover {
    color: #e55a1c;
}

/* ---------- EXECUTIVE VOICE (FIXED LAYOUT) ---------- */
.spr-executive {
    padding: 5rem 0;
}

.spr-executive__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spr-executive__image img {
    border-radius: 1.5rem;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.spr-executive__content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.spr-executive__content .spr-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    margin-bottom: 0;
}

.spr-executive__content h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

.spr-executive__content h2 span {
    color: #e55a1c;
}

.spr-executive__content>p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Fix for list items to display title on one line and description on a new line (matching your image) */
.spr-executive__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.spr-executive__list div {
    display: block;
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.5;
}

.spr-executive__list i {
    color: #e55a1c;
    font-size: 1rem;
    margin-right: 0.5rem;
    width: 1.25rem;
    display: inline-block;
    text-align: center;
}

.spr-executive__list strong {
    font-weight: 700;
    display: inline-block;
    margin-right: 0.25rem;
}

/* Force a line break after the strong tag and indent the description */
.spr-executive__list div br {
    display: none;
}

/* Since the HTML has " – " after strong, we convert that to a line break visually */
.spr-executive__list div {
    position: relative;
    padding-left: 1.75rem;
}

.spr-executive__list i {
    position: absolute;
    left: 0;
    top: 0.1rem;
}

.spr-executive__list strong::after {
    content: "";
    display: block;
    height: 0;
}

/* Hide the dash and put description on new line */
.spr-executive__list div {
    word-break: break-word;
}

.spr-executive__list div strong+br,
.spr-executive__list div strong+.dash {
    display: none;
}

/* Alternative: wrap the description in a span using JS? Not needed. 
   For pure CSS, we cannot move text nodes. But we can use a trick: 
   display: flex; flex-direction: column; then treat the whole text as block. 
   However, the dash will remain. Simpler: keep as is but add extra margin bottom for titles.
   I'll add a bottom margin to strong to visually separate from description. */
.spr-executive__list strong {
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* Ensure the description text wraps nicely */
.spr-executive__list div {
    margin-bottom: 0.25rem;
}

/* Responsive touch */
@media (max-width: 768px) {
    .spr-executive__list div {
        padding-left: 1.5rem;
    }

    .spr-executive__list i {
        font-size: 0.9rem;
        top: 0.15rem;
    }
}

/* ---------- STATS ---------- */
.spr-stats {
    padding: 4rem 0;
    background: #faf9fe;
}

.spr-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.spr-stat__num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e55a1c, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* ---------- PRESS KIT ---------- */
.spr-presskit {
    padding: 5rem 0;
}

.spr-presskit__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.spr-download-card {
    background: white;
    border: 1px solid #eef2ff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.spr-download-card:hover {
    transform: translateY(-5px);
    border-color: #e55a1c;
    box-shadow: 0 12px 20px -12px rgba(229, 90, 28, 0.1);
}

.spr-download-card i:first-child {
    font-size: 2rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: block;
}

.spr-download-card h4 {
    margin-bottom: 1rem;
}

.spr-download-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e55a1c;
}

.spr-download-card span i {
    font-size: 0.8rem;
    display: inline;
    margin-left: 0.3rem;
}

/* ---------- CTA ---------- */
.spr-cta {
    padding: 4rem 0 6rem;
}

.spr-cta__card {
    background: linear-gradient(135deg, #fef9f5, #ffffff);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #ffe6dc;
}

.spr-cta__card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.spr-cta__card p {
    color: #4b5563;
    margin-bottom: 2rem;
}

.spr-btn-primary {
    background: #111827;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.spr-btn-primary:hover {
    background: #e55a1c;
    gap: 1rem;
    transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.spr-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .spr-featured__card {
        grid-template-columns: 1fr;
    }

    .spr-executive__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .spr-executive__image {
        max-width: 500px;
        margin: 0 auto;
    }

    .spr-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .spr-nav__toggle {
        display: flex;
    }

    .spr-nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .spr-nav__menu.active {
        left: 0;
    }

    .spr-nav__links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .spr-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .spr-coverage__grid {
        grid-template-columns: 1fr;
    }

    .spr-presskit__grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   SALES CONSULTANCY - STYLES
   Prefix: ss-
   Primary color: #e55a1c
   ============================================ */

body.ss-body {
    
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}



button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- PRELOADER ---------- */
.ss-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.ss-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ss-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: ssPulse 1.5s infinite;
}

.ss-preloader__logo span {
    color: white;
}

.ss-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.ss-preloader__fill {
    width: 0;
    height: 100%;
    background: #e55a1c;
    animation: ssFillBar 1.5s ease forwards;
}

@keyframes ssFillBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes ssPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER ---------- */
.ss-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ss-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.ss-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.ss-nav__logo span {
    color: #e55a1c;
}

.ss-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.ss-hamburger,
.ss-hamburger::before,
.ss-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.ss-nav__toggle.active .ss-hamburger {
    transform: rotate(45deg);
}

.ss-nav__toggle.active .ss-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.ss-nav__toggle.active .ss-hamburger::after {
    opacity: 0;
}

.ss-nav__menu {
    display: flex;
}

.ss-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.ss-nav__link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.ss-nav__link:hover,
.ss-nav__link.active {
    color: #e55a1c;
}

.ss-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e55a1c;
    transition: width 0.3s;
}

.ss-nav__link:hover::after,
.ss-nav__link.active::after {
    width: 100%;
}

/* ---------- HERO ---------- */
.ss-hero {
    padding-top: 8rem;
    text-align: center;
    background: linear-gradient(135deg, #fef9f5, #ffffff);
    position: relative;
}

.ss-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid rgba(229, 90, 28, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.ss-pulse-dot {
    width: 8px;
    height: 8px;
    background: #e55a1c;
    border-radius: 50%;
    display: inline-block;
    animation: ssPulseDot 1.5s infinite;
}

@keyframes ssPulseDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.ss-hero__title {
    font-size: clamp(2rem, 6vw, 2.625rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.ss-hero__title span {
    background: linear-gradient(135deg, #8b5cf6, #e55a1c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.ss-hero__sub {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.ss-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s;
}

.ss-btn-primary {
    background: #111827;
    color: white;
}

.ss-btn-primary:hover {
    background: #e55a1c;
    gap: 0.8rem;
    transform: translateY(-2px);
}

.ss-btn-outline {
    border: 1px solid #e5e7eb;
    background: white;
    color: #4b5563;
}

.ss-btn-outline:hover {
    border-color: #e55a1c;
    color: #e55a1c;
}

.ss-hero__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ss-hero__mockup {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
    padding: 0.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.1);
}

.ss-hero__mockup img {
    border-radius: 1rem;
    width: 100%;
}

.ss-hero__badge-card {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ss-hero__badge-card i {
    color: #e55a1c;
    font-size: 1.2rem;
}

.ss-hero__badge-card span {
    font-size: 0.7rem;
    color: #6b7280;
    display: block;
}

.ss-hero__badge-card strong {
    font-size: 1rem;
}

.ss-hero__scroll {
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.ss-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #e55a1c, transparent);
    margin: 0 auto;
}

/* ---------- FEATURES ---------- */
.ss-features {
    padding: 4rem 0;
    border-bottom: 1px solid #eef2ff;
}

.ss-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.ss-feature {
    text-align: center;
    padding: 1rem;
}

.ss-feature i {
    font-size: 2rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: inline-block;
}

.ss-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ss-feature p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ---------- CHALLENGE SECTION ---------- */
.ss-challenge {
    padding: 5rem 0;
}

.ss-challenge__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ss-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    margin-bottom: 1rem;
}

.ss-challenge__text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.ss-challenge__text p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.ss-quote {
    background: #faf9fe;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 3px solid #e55a1c;
    font-style: italic;
}

.ss-challenge__image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.ss-challenge__image img {
    width: 100%;
    height: auto;
}

.ss-image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.ss-image-badge i {
    color: #e55a1c;
}

/* ---------- SERVICES GRID ---------- */
.ss-services {
    padding: 5rem 0;
    background: #faf9fe;
}

.ss-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.ss-section__header h2 {
    font-size: 2rem;
    font-weight: 800;
}

.ss-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.ss-service-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #eef2ff;
    transition: all 0.3s;
}

.ss-service-card:hover {
    transform: translateY(-5px);
    border-color: #e55a1c;
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.ss-service-card i {
    font-size: 2rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: block;
}

.ss-service-card h3 {
    margin-bottom: 0.5rem;
}

.ss-service-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.ss-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e55a1c;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.ss-card-link:hover {
    gap: 0.5rem;
}

/* ---------- BENEFIT CARD ---------- */
.ss-benefit {
    padding: 5rem 0;
}

.ss-benefit__card {
    background: linear-gradient(135deg, #faf9fe, #ffffff);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid #eef2ff;
    text-align: center;
}

.ss-benefit__icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #e55a1c;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.ss-benefit__card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ss-benefit__card>p {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.ss-benefit__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    text-align: left;
}

.ss-benefit__grid div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.ss-benefit__grid i {
    color: #e55a1c;
}

/* ---------- TIMELINE (PROCESS) ---------- */
.ss-process {
    padding: 5rem 0;
    background: #ffffff;
}

.ss-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.ss-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e55a1c20;
}

.ss-timeline__item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 2rem;
}

.ss-timeline__dot {
    position: absolute;
    left: 20px;
    top: 0;
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #e55a1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #e55a1c;
    z-index: 1;
}

.ss-timeline__card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #eef2ff;
    transition: all 0.3s;
}

.ss-timeline__card:hover {
    transform: translateX(5px);
    border-color: #e55a1c;
}

.ss-timeline__card i {
    font-size: 1.5rem;
    color: #e55a1c;
    margin-bottom: 0.5rem;
    display: block;
}

.ss-timeline__card h3 {
    margin-bottom: 0.5rem;
}

.ss-timeline__card p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ---------- WHY CHOOSE US ---------- */
.ss-why {
    padding: 5rem 0;
    background: #faf9fe;
}

.ss-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.ss-why__grid>div {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #eef2ff;
}

.ss-why__grid i {
    font-size: 1.8rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: block;
}

/* ---------- METHODOLOGY STEPS ---------- */
.ss-methodology {
    padding: 5rem 0;
}

.ss-method-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.ss-step {
    text-align: center;
    min-width: 100px;
    padding: 1rem;
}

.ss-step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.5rem;
    color: #e55a1c;
    transition: all 0.3s;
}

.ss-step:hover .ss-step-icon {
    border-color: #e55a1c;
    transform: scale(1.05);
}

.ss-step span {
    font-weight: 700;
    display: block;
}

.ss-step small {
    font-size: 0.7rem;
    color: #9ca3af;
}

/* ---------- CTA ---------- */
.ss-cta {
    padding: 5rem 0 7rem;
}

.ss-cta__card {
    background: linear-gradient(135deg, #fef9f5, #ffffff);
    border-radius: 3rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #ffe6dc;
}

.ss-cta__card i {
    font-size: 3rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: inline-block;
}

.ss-cta__card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ss-cta__card p {
    color: #4b5563;
    margin-bottom: 2rem;
}

/* ---------- FOOTER ---------- */
.ss-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .ss-challenge__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ss-nav__toggle {
        display: flex;
    }

    .ss-nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .ss-nav__menu.active {
        left: 0;
    }

    .ss-nav__links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .ss-timeline::before {
        left: 20px;
    }

    .ss-timeline__item {
        padding-left: 55px;
    }

    .ss-timeline__dot {
        left: 10px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .ss-method-steps {
        gap: 1rem;
    }
}


/* Sales consultancy */

.ss-body {
    font-family: var(--ff-body);
    background: var(--ss-bg);
    color: var(--ss-ink);
    overflow-x: hidden;
}

/* ═══ PAGE CURSOR GLOW ═══ */
.ss-cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(229, 90, 28, .08) 0%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform .15s linear;
}

/* ═══ NOISE TEXTURE OVERLAY ═══ */
.ss-noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══ UTILITY ═══ */
.ss-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.ss-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ss-orange);
    margin-bottom: 18px;
}

.ss-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--ss-orange);
    border-radius: 2px;
}

.ss-sec-title {
    font-family: var(--ff-display);
    font-size: clamp(36px, 4.5vw, 42px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ss-ink);
}

.ss-sec-title em {
    font-style: italic;
    color: var(--ss-orange);
}

.ss-sec-title-light {
    color: #fff;
}

.ss-sec-title-light em {
    color: var(--ss-orange2);
}

.ss-body-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ss-muted);
}

/* ═══ REVEAL ANIMATIONS ═══ */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

[data-reveal="left"] {
    transform: translateX(-40px) translateY(0);
}

[data-reveal="right"] {
    transform: translateX(40px) translateY(0);
}

[data-reveal="scale"] {
    transform: scale(.94);
}

[data-reveal].is-visible {
    opacity: 1 !important;
    transform: none;
}

[data-delay="1"] {
    transition-delay: .1s;
}

[data-delay="2"] {
    transition-delay: .2s;
}

[data-delay="3"] {
    transition-delay: .3s;
}

[data-delay="4"] {
    transition-delay: .4s;
}

[data-delay="5"] {
    transition-delay: .5s;
}

[data-delay="6"] {
    transition-delay: .6s;
}

/* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
.ss-hero {
    min-height: 100vh;
    background: var(--ss-dark);
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}

.ss-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ss-hero__bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(229, 90, 28, .18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(229, 90, 28, .1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 60% 80%, rgba(240, 180, 41, .06) 0%, transparent 60%);
}

.ss-hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 72px 72px;
}

/* Animated orbs */
.ss-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.ss-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(229, 90, 28, .12);
    top: -100px;
    left: -80px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.ss-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(229, 90, 28, .08);
    bottom: 10%;
    right: -60px;
    animation: orbFloat2 9s ease-in-out infinite;
}

.ss-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(240, 180, 41, .07);
    top: 40%;
    left: 45%;
    animation: orbFloat3 14s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 40px) scale(1.1);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -30px) scale(1.08);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

.ss-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 80px;
}

.ss-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(229, 90, 28, .12);
    border: 1px solid rgba(229, 90, 28, .25);
    color: var(--ss-orange2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(229, 90, 28, .3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(229, 90, 28, 0);
    }
}

.ss-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ss-orange);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.7);
    }
}

.ss-hero__title {
    font-family: var(--ff-display);
    font-size: clamp(42px, 5.5vw, 42px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
}

.ss-hero__title em {
    font-style: italic;
    color: var(--ss-orange);
}

.ss-hero__title span {
    display: block;
}

.ss-hero__sub {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    max-width: 520px;
    margin-bottom: 40px;
}

.ss-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ss-btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 100px;
    background: var(--ss-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    border: none;
    cursor: pointer;
    font-family: var(--ff-body);
}

.ss-btn-hero-primary:hover {
    background: #c94e16;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(229, 90, 28, .35);
}

.ss-btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    cursor: pointer;
    font-family: var(--ff-body);
}

.ss-btn-hero-outline:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .06);
}

.ss-hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.ss-hero__trust-avatars {
    display: flex;
}

.ss-hero__trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--ss-dark);
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}

.ss-hero__trust-avatar:first-child {
    margin-left: 0;
}

.ss-hero__trust-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

.ss-hero__trust-text strong {
    color: #fff;
}

/* Hero right — metrics card cluster */
.ss-hero__visual {
    position: relative;
}

.ss-hero__metrics-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--ss-r-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.ss-hero__metrics-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 90, 28, .15) 0%, transparent 70%);
}

.ss-metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 2px;
}

.ss-metric {
    background: rgba(255, 255, 255, .04);
    padding: 22px 20px;
    transition: background .2s;
}

.ss-metric:hover {
    background: rgba(255, 255, 255, .08);
}

.ss-metric:first-child {
    border-radius: var(--ss-r) 0 0 0;
}

.ss-metric:nth-child(2) {
    border-radius: 0 var(--ss-r) 0 0;
}

.ss-metric-full {
    background: rgba(229, 90, 28, .12);
    padding: 20px;
    border-radius: 0 0 var(--ss-r) var(--ss-r);
    border: 1px solid rgba(229, 90, 28, .2);
    display: flex;
    align-items: center;
    gap: 16px;
}

.ss-metric-num {
    font-family: var(--ff-display);
    font-size: 38px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.ss-metric-num span {
    color: var(--ss-orange2);
}

.ss-metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .04em;
}

.ss-metric-full-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(229, 90, 28, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-metric-full-icon iconify-icon {
    font-size: 22px;
    color: var(--ss-orange2);
}

.ss-metric-full-text {
    flex: 1;
}

.ss-metric-full-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.ss-metric-full-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

/* Floating accent cards */
.ss-float-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    animation: floatCard 4s ease-in-out infinite;
}

.ss-float-card--a {
    top: -28px;
    right: -20px;
    animation-delay: 0s;
}

.ss-float-card--b {
    bottom: 20px;
    left: -28px;
    animation-delay: -2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ss-float-card-val {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--ss-orange);
    line-height: 1;
}

.ss-float-card-lbl {
    font-size: 11px;
    color: var(--ss-muted);
    margin-top: 3px;
}

/* Hero scroll indicator */
.ss-hero__scroll {
    position: relative;
    z-index: 2;
    padding: 24px 0 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
    margin-left: 32px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(.7);
    }
}

.ss-hero__scroll-text {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
       FEATURES TICKER STRIP
    ═══════════════════════════════════════ */
.ss-ticker {
    background: var(--ss-orange);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ss-ticker__track {
    display: flex;
    gap: 0;
    animation: tickerRoll 30s linear infinite;
    width: max-content;
}

.ss-ticker:hover .ss-ticker__track {
    animation-play-state: paused;
}

@keyframes tickerRoll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ss-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    letter-spacing: .03em;
}

.ss-ticker__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
}

/* ═══════════════════════════════════════
       FEATURES ROW
    ═══════════════════════════════════════ */
.ss-features-row {
    padding: 88px 0;
    background: var(--ss-bg);
}

.ss-features-row__header {
    text-align: center;
    margin-bottom: 56px;
}

.ss-features-row__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ss-feat-card {
    padding: 32px 26px;
    border-radius: var(--ss-r);
    background: var(--ss-card);
    border: 1px solid var(--ss-border);
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out), border-color .3s;
    cursor: default;
}

.ss-feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ss-orange), var(--ss-orange2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-out);
}

.ss-feat-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .09);
    transform: translateY(-5px);
    border-color: var(--ss-orange);
}

.ss-feat-card:hover::before {
    transform: scaleX(1);
}

.ss-feat-num {
    font-family: var(--ff-display);
    font-size: 56px;
    font-weight: 300;
    color: rgba(229, 90, 28, .1);
    line-height: 1;
    margin-bottom: 16px;
    transition: color .3s;
}

.ss-feat-card:hover .ss-feat-num {
    color: rgba(229, 90, 28, .2);
}

.ss-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ss-cream);
    border: 1px solid rgba(229, 90, 28, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background .3s;
}

.ss-feat-card:hover .ss-feat-icon {
    background: rgba(229, 90, 28, .1);
}

.ss-feat-icon iconify-icon {
    font-size: 22px;
    color: var(--ss-orange);
}

.ss-feat-card h3 {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--ss-ink);
}

.ss-feat-card p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--ss-muted);
}

/* ═══════════════════════════════════════
       CHALLENGE / ABOUT SECTION
    ═══════════════════════════════════════ */
.ss-challenge {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--ss-cream) 0%, var(--ss-bg) 100%);
}

.ss-challenge__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ss-challenge__text h2 {
    margin-bottom: 20px;
}

.ss-challenge__text>p {
    margin-bottom: 28px;
}

.ss-callout-quote {
    padding: 28px 32px;
    border-radius: var(--ss-r);
    background: var(--ss-dark);
    border-left: 3px solid var(--ss-orange);
    position: relative;
    overflow: hidden;
}

.ss-callout-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 16px;
    font-family: var(--ff-display);
    font-size: 120px;
    font-weight: 400;
    color: rgba(229, 90, 28, .12);
    line-height: 1;
}

.ss-callout-quote p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .7);
    position: relative;
    z-index: 1;
}

.ss-challenge__image {
    position: relative;
}

.ss-challenge__img-wrap {
    border-radius: var(--ss-r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--ss-cream2);
    position: relative;
}

.ss-challenge__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ss-challenge__img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, var(--ss-cream2), var(--ss-dark));
}

.ss-img-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--ss-card);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 5s ease-in-out infinite;
}

.ss-img-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(26, 122, 74, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-img-badge-icon iconify-icon {
    font-size: 20px;
    color: var(--ss-green);
}

.ss-img-badge strong {
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.ss-img-badge span {
    font-size: 11.5px;
    color: var(--ss-muted);
}

.ss-challenge__stat-pill {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--ss-orange);
    border-radius: 100px;
    padding: 10px 20px;
    box-shadow: 0 8px 24px rgba(229, 90, 28, .35);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    animation: floatCard 4s ease-in-out infinite reverse;
}

/* ═══════════════════════════════════════
       SERVICES GRID
    ═══════════════════════════════════════ */
.ss-services-sec {
    padding: 100px 0;
    background: var(--ss-dark);
    position: relative;
    overflow: hidden;
}

.ss-services-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(229, 90, 28, .1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 0%, rgba(229, 90, 28, .07) 0%, transparent 60%);
    pointer-events: none;
}

.ss-services-sec__header {
    position: relative;
    z-index: 2;
    margin-bottom: 56px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.ss-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.ss-svc-card {
    padding: 30px 24px;
    border-radius: var(--ss-r);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background .3s, border-color .3s, transform .3s var(--ease-out);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.ss-svc-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(229, 90, 28, .3);
    transform: translateY(-4px);
}

.ss-svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--ss-orange), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-out);
}

.ss-svc-card:hover::after {
    transform: scaleX(1);
}

.ss-svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(229, 90, 28, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.ss-svc-card:hover .ss-svc-icon {
    background: rgba(229, 90, 28, .22);
}

.ss-svc-icon iconify-icon {
    font-size: 20px;
    color: var(--ss-orange2);
}

.ss-svc-card h3 {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.ss-svc-card p {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .5);
    flex: 1;
}

.ss-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ss-orange2);
    text-decoration: none;
    margin-top: auto;
    transition: gap .2s;
}

.ss-svc-link:hover {
    gap: 10px;
}

/* ═══════════════════════════════════════
       WHO CAN BENEFIT
    ═══════════════════════════════════════ */
.ss-benefit {
    padding: 88px 0;
    background: var(--ss-cream);
}

.ss-benefit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ss-benefit__checks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.ss-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--ss-r);
    background: var(--ss-card);
    border: 1px solid var(--ss-border);
    transition: border-color .2s, box-shadow .2s, transform .2s var(--ease-out);
}

.ss-check-item:hover {
    border-color: var(--ss-orange);
    box-shadow: 0 6px 20px rgba(229, 90, 28, .1);
    transform: translateX(6px);
}

.ss-check-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(229, 90, 28, .1);
    border: 1px solid rgba(229, 90, 28, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.ss-check-dot iconify-icon {
    font-size: 14px;
    color: var(--ss-orange);
}

.ss-check-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ss-ink2);
}

.ss-benefit__visual {
    position: relative;
}

.ss-benefit__ring-chart {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 1;
    position: relative;
}

.ss-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ss-ring-track {
    fill: none;
    stroke: var(--ss-cream2);
    stroke-width: 8;
}

.ss-ring-progress {
    fill: none;
    stroke: var(--ss-orange);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 0 1000;
    transition: stroke-dasharray 1.5s var(--ease-out);
}

.ss-ring-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.ss-ring-num {
    font-family: var(--ff-display);
    font-size: 52px;
    font-weight: 400;
    color: var(--ss-orange);
    line-height: 1;
}

.ss-ring-lbl {
    font-size: 12px;
    color: var(--ss-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ss-benefit__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.ss-bstat {
    padding: 18px;
    border-radius: var(--ss-r-sm, 10px);
    background: var(--ss-card);
    border: 1px solid var(--ss-border);
    text-align: center;
}

.ss-bstat strong {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--ss-orange);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.ss-bstat span {
    font-size: 12px;
    color: var(--ss-muted);
}

/* ═══════════════════════════════════════
       PROCESS TIMELINE
    ═══════════════════════════════════════ */
.ss-process-sec {
    padding: 100px 0;
    background: var(--ss-bg);
}

.ss-process-sec__header {
    text-align: center;
    margin-bottom: 72px;
}

.ss-timeline-h {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 24px;
}

.ss-timeline-h::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--ss-orange), rgba(229, 90, 28, .2));
}

.ss-tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.ss-tl-dot-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ss-card);
    border: 2px solid var(--ss-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: border-color .3s, background .3s, transform .3s var(--ease-spring);
}

.ss-tl-step:hover .ss-tl-dot-wrap {
    border-color: var(--ss-orange);
    background: rgba(229, 90, 28, .06);
    transform: scale(1.1);
}

.ss-tl-dot-num {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--ss-muted);
    transition: color .3s;
}

.ss-tl-step:hover .ss-tl-dot-num {
    color: var(--ss-orange);
}

.ss-tl-step h3 {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ss-ink);
    margin-bottom: 8px;
}

.ss-tl-step p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ss-muted);
    max-width: 200px;
}

/* ═══════════════════════════════════════
       METHODOLOGY STEPS (horizontal)
    ═══════════════════════════════════════ */
.ss-method-sec {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ss-dark) 0%, #1a1505 100%);
    overflow: hidden;
    position: relative;
}

.ss-method-sec::before {
    content: 'PIPELINE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-display);
    font-size: 180px;
    font-weight: 700;
    color: rgba(255, 255, 255, .025);
    letter-spacing: -.05em;
    white-space: nowrap;
    pointer-events: none;
}

.ss-method-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}

.ss-method-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    position: relative;
    z-index: 2;
}

.ss-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: var(--ss-r);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
    transition: background .3s, border-color .3s, transform .3s var(--ease-spring);
    cursor: default;
}

.ss-step-card:hover {
    background: rgba(229, 90, 28, .1);
    border-color: rgba(229, 90, 28, .3);
    transform: translateY(-6px);
}

.ss-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(229, 90, 28, .1);
    border: 1px solid rgba(229, 90, 28, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.ss-step-card:hover .ss-step-icon {
    background: rgba(229, 90, 28, .25);
}

.ss-step-icon iconify-icon {
    font-size: 22px;
    color: var(--ss-orange2);
}

.ss-step-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.ss-step-num {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .08em;
}

/* ═══════════════════════════════════════
       WHY CHOOSE US
    ═══════════════════════════════════════ */
.ss-why-sec {
    padding: 100px 0;
    background: var(--ss-bg);
}

.ss-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
    margin-top: 0;
}

.ss-why-sticky {
    position: sticky;
    top: 110px;
}

.ss-why-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ss-why-card {
    padding: 28px 28px 28px 24px;
    border-radius: var(--ss-r);
    background: var(--ss-card);
    border: 1px solid var(--ss-border);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: box-shadow .3s, border-color .3s, transform .3s var(--ease-out);
}

.ss-why-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .07);
    border-color: rgba(229, 90, 28, .3);
    transform: translateX(6px);
}

.ss-why-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--ss-cream);
    border: 1px solid rgba(229, 90, 28, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.ss-why-card:hover .ss-why-card-icon {
    background: rgba(229, 90, 28, .1);
}

.ss-why-card-icon iconify-icon {
    font-size: 22px;
    color: var(--ss-orange);
}

.ss-why-card h3 {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--ss-ink);
}

.ss-why-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--ss-muted);
}

/* ═══════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════ */
.ss-cta-sec {
    padding: 100px 0;
    background: var(--ss-dark);
    position: relative;
    overflow: hidden;
}

.ss-cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(229, 90, 28, .15) 0%, transparent 65%);
    pointer-events: none;
}

.ss-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.ss-cta-inner h2 {
    margin-bottom: 20px;
}

.ss-cta-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    margin-bottom: 44px;
}

.ss-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.ss-cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

/* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .ss-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-timeline-h {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-timeline-h::before {
        display: none;
    }

    .ss-method-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .ss-features-row__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-why-grid {
        grid-template-columns: 1fr;
    }

    .ss-why-sticky {
        position: static;
    }
}

@media (max-width: 840px) {
    .ss-hero__inner {
        grid-template-columns: 1fr;
        padding-top: 120px;
        gap: 40px;
    }

    .ss-hero__visual {
        display: none;
    }

    .ss-challenge__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ss-challenge__image {
        display: none;
    }

    .ss-benefit__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .ss-container {
        padding: 0 20px;
    }

    .ss-features-row__grid {
        grid-template-columns: 1fr;
    }

    .ss-services-grid {
        grid-template-columns: 1fr;
    }

    .ss-timeline-h {
        grid-template-columns: 1fr;
    }

    .ss-method-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-benefit__stats {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================
   BRAND RESEARCH & STRATEGY - STYLES
   Prefix: brs-
   Primary color: #e55a1c
   ============================================ */

body.brs-body {
    
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}



button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- PRELOADER ---------- */
.brs-preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.brs-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.brs-preloader__logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e55a1c;
    margin-bottom: 1.5rem;
    animation: brsPulse 1.5s infinite;
}

.brs-preloader__logo span {
    color: white;
}

.brs-preloader__bar {
    width: 240px;
    height: 3px;
    background: rgba(229, 90, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.brs-preloader__fill {
    width: 0;
    height: 100%;
    background: #e55a1c;
    animation: brsFillBar 1.5s ease forwards;
}

@keyframes brsFillBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes brsPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ---------- HEADER ---------- */
.brs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brs-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brs-nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.brs-nav__logo span {
    color: #e55a1c;
}

.brs-nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.brs-hamburger,
.brs-hamburger::before,
.brs-hamburger::after {
    width: 100%;
    height: 2px;
    background: #1f2937;
    display: block;
    transition: 0.3s;
}

.brs-nav__toggle.active .brs-hamburger {
    transform: rotate(45deg);
}

.brs-nav__toggle.active .brs-hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.brs-nav__toggle.active .brs-hamburger::after {
    opacity: 0;
}

.brs-nav__menu {
    display: flex;
}

.brs-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.brs-nav__link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.brs-nav__link:hover,
.brs-nav__link.active {
    color: #e55a1c;
}

.brs-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e55a1c;
    transition: width 0.3s;
}

.brs-nav__link:hover::after,
.brs-nav__link.active::after {
    width: 100%;
}

/* ---------- HERO ---------- */
.brs-hero {
    padding-top: 7rem;
    text-align: center;
    background: linear-gradient(135deg, #fef9f5, #ffffff);
}

.brs-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid rgba(229, 90, 28, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    margin-bottom: 1.5rem;
}

.brs-hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.brs-hero__title span {
    background: linear-gradient(135deg, #8b5cf6, #e55a1c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.brs-hero__sub {
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.brs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s;
}

.brs-btn-primary {
    background: #111827;
    color: white;
}

.brs-btn-primary:hover {
    background: #e55a1c;
    gap: 0.8rem;
    transform: translateY(-2px);
}

.brs-hero__mockup {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .brs-hero__mockup {
        flex-direction: row;
    }
}

.brs-mockup__main {
    flex: 2;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.brs-mockup__main img {
    width: 100%;
    height: auto;
}

.brs-mockup__sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brs-mockup__card {
    background: white;
    border-radius: 1.5rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid #eef2ff;
    transition: all 0.3s;
}

.brs-mockup__card:hover {
    transform: translateY(-4px);
    border-color: #e55a1c;
}

.brs-mockup__card i {
    font-size: 2rem;
    color: #e55a1c;
    margin-bottom: 0.5rem;
    display: block;
}

.brs-mockup__card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.brs-mockup__card p {
    font-size: 0.7rem;
    color: #6b7280;
}

/* ---------- SECTION GENERICS ---------- */
.brs-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e55a1c;
    margin-bottom: 1rem;
}

.brs-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.brs-section__header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.brs-section__header p {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- BRAND IDENTITY SECTION ---------- */
.brs-identity {
    padding: 5rem 0;
}

.brs-identity__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.brs-identity__text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.5rem 0 1rem;
}

.brs-identity__text p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.brs-identity__card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.brs-identity__card i {
    font-size: 3rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: block;
}

.brs-identity__card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.brs-identity__card p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.brs-identity__card ul {
    list-style: none;
}

.brs-identity__card li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brs-identity__card li i {
    font-size: 1rem;
    color: #e55a1c;
    display: inline;
    margin: 0;
}

/* ---------- PROCESS STEPS ---------- */
.brs-process {
    padding: 5rem 0;
    background: #faf9fe;
}

.brs-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.brs-step {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    border: 1px solid #eef2ff;
    transition: all 0.3s;
}

.brs-step:hover {
    transform: translateY(-5px);
    border-color: #e55a1c;
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.brs-step__icon {
    width: 50px;
    height: 50px;
    background: #f3e8ff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.brs-step__icon i {
    font-size: 1.5rem;
    color: #e55a1c;
}

.brs-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.brs-step p {
    font-size: 0.85rem;
    color: #6b7280;
}

.brs-step__num {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: #eef2ff;
    line-height: 1;
}

/* ---------- DELIVERABLES ---------- */
.brs-deliverables {
    padding: 5rem 0;
}

.brs-deliverables__wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.brs-deliverables__text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.brs-deliverables__text p {
    color: #4b5563;
}

.brs-deliverables__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.brs-deliverable {
    background: #fef9f5;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.brs-deliverable i {
    font-size: 1.5rem;
    color: #e55a1c;
    margin-bottom: 0.5rem;
    display: block;
}

.brs-deliverable span {
    font-size: 0.8rem;
    font-weight: 600;
}

.brs-deliverable:hover {
    background: #e55a1c10;
    transform: translateY(-2px);
}

/* ---------- ADVANTAGE SECTION ---------- */
.brs-advantage {
    padding: 5rem 0;
    background: #faf9fe;
}

.brs-advantage__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.brs-advantage-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #eef2ff;
    transition: all 0.3s;
}

.brs-advantage-card:hover {
    transform: translateY(-5px);
    border-color: #e55a1c;
}

.brs-advantage-card i {
    font-size: 2rem;
    color: #e55a1c;
    margin-bottom: 1rem;
    display: inline-block;
}

.brs-advantage-card h3 {
    margin-bottom: 0.5rem;
}

.brs-advantage-card p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ---------- CTA ---------- */
.brs-cta {
    padding: 4rem 0 6rem;
}

.brs-cta__card {
    background: linear-gradient(135deg, #fef9f5, #ffffff);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #ffe6dc;
}

.brs-cta__card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.brs-cta__card p {
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- FOOTER ---------- */
.brs-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .brs-identity__grid {
        grid-template-columns: 1fr;
    }

    .brs-deliverables__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brs-deliverables__text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .brs-nav__toggle {
        display: flex;
    }

    .brs-nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .brs-nav__menu.active {
        left: 0;
    }

    .brs-nav__links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .brs-process__grid {
        grid-template-columns: 1fr;
    }

    .brs-deliverables__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Internal Sliders */

    #backToTop {
		position: fixed;
		bottom: 30px;
		right: 30px;
		width: 45px;
		height: 45px;
		border: none;
		border-radius: 50%;
		background: #e2611f;
		color: #fff;
		font-size: 24px;
		cursor: pointer;
		display: none;
		align-items: center;
		justify-content: center;
		z-index: 9999;
		transition: all 0.3s ease;
	}

	#backToTop:hover {
		background: #333;
		transform: translateY(-3px);
	}

	#backToTop.show {
		display: flex;
	}

	@media (max-width: 767px) {
		#backToTop {
			bottom: 20px;
			right: 20px;
			width: 40px;
			height: 40px;
			font-size: 20px;
		}
	}

