

:root {
    --primary-rgb: 224, 58, 2;
    --secondary-rgb: 21, 55, 98;

    --dark: #0B0A0A;
    --light: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Persistent H1 above carousel */
.hero-h1-wrapper {
    background: var(--black_color);
    text-align: center;
    padding: 92px 20px 0 20px;
    margin: 0;
}

.hero-persistent-h1 {
    font-size: 20px;
    color: var(--orange_color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .hero-h1-wrapper {
        padding: 80px 16px 0 16px;
    }
    .hero-persistent-h1 {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
}

/* Body & Base */
body.has-mega-header,
body.has-simple-header {
    background: var(--light);
    color: var(--gray-900);
}

/* ========================================
   SIMPLE HEADER STYLES
   ======================================== */

.simple-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    height: 72px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.simple-header-inner {
    max-width: 1766px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.simple-logo {
    flex-shrink: 0;
}

.simple-logo img {
    height: 36px;
    width: auto;
}

/* Navigation */
.simple-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.simple-nav-link {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--secondary_color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.simple-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--orange_color);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.simple-nav-link:hover {
    color: var(--orange_color);
}

.simple-nav-link:hover::after {
    transform: scaleX(1);
}

.simple-nav-link.active {
    color: var(--orange_color);
    font-weight: 600;
}

.simple-nav-link.active::after {
    transform: scaleX(1);
}

/* Trust Badges */
.header-trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-img {
    height: 40px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.trust-badge-img:hover {
    opacity: 1;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.trust-badge-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
    margin: 0 0.5rem;
}

.trust-badge-engineers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.trust-badge-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange_color);
}

.trust-badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    white-space: nowrap;
}

/* Mobile Toggle */
.simple-mobile-toggle {
    display: none;
    width: 32px;
    height: 32px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.simple-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.simple-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.simple-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.simple-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.simple-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
    overflow-y: auto;
}

.simple-mobile-menu.active {
    display: flex;
}

.simple-mobile-link {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.simple-mobile-link:hover,
.simple-mobile-link.active {
    background: var(--gray-50);
    color: var(--orange_color);
}

.simple-mobile-badges {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mobile-trust-img {
    height: 48px;
    width: auto;
    opacity: 0.85;
}

.mobile-trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .header-trust-badges {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .simple-nav {
        display: none;
    }
    
    .simple-mobile-toggle {
        display: flex;
    }
    
    .simple-header-inner {
        padding: 0 1rem;
    }
}

/* Container */
.container-page {
    max-width: 1766px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media screen and (max-width: 768px) {
    .container-page {
        padding: 0 1rem;
    }
}

/* Home Content Area */
.home-content-area {
    min-height: 60vh;
    padding-top: 80px;
}

/* Text Accent for Headings */
.text-accent {
    color: var(--orange_color);
}

/* Fade In Animation */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Section Styles */
.section-light {
    background: var(--light);
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--black_color);
    color: var(--light);
}

/* Typography */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--light);
}

/* Button Styles */
.btn-primary-custom {
    background: var(--orange_color);
    color: var(--light);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: var(--primary_hover);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.btn-secondary-custom {
    background: var(--secondary_color);
    color: var(--light);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: var(--secondary_hover);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline-custom:hover {
    border-color: var(--orange_color);
    color: var(--orange_color);
    transform: translateY(-2px);
}

/* Card Styles */
.card-interactive {
    background: var(--light);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card-interactive:hover {
    border-color: var(--orange_color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Utility Classes */
.text-muted-custom {
    color: var(--gray-500);
}

.text-dark-60 {
    color: rgba(11, 10, 10, 0.6);
}

.border-black-5 {
    border-color: rgba(11, 10, 10, 0.05) !important;
}

/* ========================================
   HERO SLIDER SECTION - 80/20 SPLIT
   ======================================== */

.hero-slider-section {
    min-height: calc(100vh - 130px);
    background: var(--black_color);
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    flex-wrap: wrap;
    height: calc(100vh - 130px);
}

/* Main Slide Area - 80% */
.hero-main-area {
    flex: 0 0 auto;
    width: 80%;
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.hero-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-slide.slide-out {
    opacity: 1;
    transform: translateX(-100%);
    pointer-events: none;
}

/* Background Image */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Dark Overlay */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
}

/* Slide Content */
.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 4rem;
    z-index: 2;
}

/* Badge */
.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(224, 58, 2, 0.15);
    border: 1px solid rgba(224, 58, 2, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero-slide-badge img {
    width: 16px;
    height: 16px;
}

.hero-slide-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--orange_color);
}

/* Title */
.hero-slide-title {
    /* font-size: 40px;
    font-weight: 800;
    line-height: 1.15;*/
    max-width: 700px;
    color: var(--light);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

/* Description */
.hero-slide-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    max-width: 600px;
}

/* Tagline */
.hero-slide-tagline {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin-bottom: 1.75rem;
}

/* CTA Button */
.hero-slide-cta {
    margin-bottom: 0;
}

.hero-slide-cta:hover {
    /* background: var(--primary_hover);
    transform: translateY(-2px);
    color: var(--light); */
    box-shadow: 0 8px 25px rgba(224, 58, 2, 0.4);
}

.hero-slide-cta-subtext {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0 1.75rem 0;
    line-height: 1.4;
    font-weight: 400;
}

/* Features */
.hero-slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-slide-feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.hero-slide-feature img {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}
.hero-slide-feature .texts {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    flex: 1;
}

/* Vertical Tabs Sidebar - 20% */
.hero-tabs-sidebar {
    flex: 0 0 auto;
    width: 20%;
    display: flex;
    flex-direction: column;
    background: var(--gray-900);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-tab {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-tab:last-child {
    border-bottom: none;
}

/* Tab Background Image */
.hero-tab-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.hero-tab:hover .hero-tab-bg {
    transform: scale(1.1);
}

/* Tab Overlay */
.hero-tab-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    transition: background 0.3s ease;
}

.hero-tab:hover .hero-tab-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-tab.active .hero-tab-overlay {
    background: linear-gradient(to top, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

/* Active indicator line */
.hero-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255,255,255,0.6);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    z-index: 3;
}

.hero-tab:hover::before,
.hero-tab.active::before {
    transform: scaleY(1);
}

.hero-tab-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    width: 100%;
}

.hero-tab-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.375rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.hero-tab.active .hero-tab-label {
    color: #ffffff;
}

.hero-tab-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.hero-tab:hover .hero-tab-text,
.hero-tab.active .hero-tab-text {
    color: #ffffff;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .hero-main-area {
        width: 75%;
    }
    .hero-tabs-sidebar {
        width: 25%;
    }
}
@media screen and (max-width: 1399px) {
    .hero-slide-content {
        padding: 30px;
    }
    .hero-slide-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
   .hero-slide-desc {
        margin-bottom: 10px;
        font-size: 15px;
    }
    .hero-slide-tagline {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .hero-slide-cta-subtext {
        font-size: 12px;
        margin: 8px 0 20px 0;
    }
    .hero-slide-feature {
        gap: 6px;
        padding: 6px 12px;
    }
    .hero-slide-badge {
        gap: 6px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    .hero-slide-badge span {
        font-size: 12px;
    }
}


@media screen and (max-width: 992px) {
    .hero-slider-section {
        min-height: auto;
    }

    .hero-split-container {
        height: auto;
    }
    .hero-main-area {
        width: 100%;
        min-height: 700px;
    }
    .hero-slide-content {
        padding: 30px;
    }
    .hero-tabs-sidebar {
        width: 100%;
        flex-direction: row;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 120px;
    }
    .hero-tab {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        align-items: flex-end;
        justify-content: flex-start;
    }
    .hero-tab:last-child {
        border-right: none;
    }
    .hero-tab::before {
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        transform: scaleX(0);
    }
    .hero-tab:hover::before,
    .hero-tab.active::before {
        transform: scaleX(1);
    }
    .hero-tab-inner {
        padding: 0.75rem;
    }
    .hero-tab-label {
        font-size: 0.625rem;
    }
    .hero-tab-text {
        font-size: 0.6875rem;
    }
}

@media screen and (max-width: 767px) {
    .hero-slide-title {
        font-size: 30px;
    }
    .hero-slide-content {
        padding: 16px;
    }
    .hero-tabs-sidebar {
        min-height: 100px;
    }
    .hero-tab-inner {
        padding: 10px;
    }
}
@media screen and (max-width: 576px) {
    .hero-slide-title {
        font-size: 1.5rem;
    }    
    .hero-slide-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero-tab-text {
        font-size: 0.625rem;
    }
}

/* ========================================
   TRUSTED BY SECTION
   ======================================== */

.trusted-by-section {
    background: #ffffff;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trusted-by-container {
    text-align: center;
}

.trusted-by-title {
    /* font-size: 0.875rem;
    color: var(--gray-600); 
    letter-spacing: 2px;*/
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.trusted-by-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 100px;
    height: 56px;
    padding: 0.25rem;
}

.trusted-logo img {
    height: 38px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.trusted-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

.trusted-by-subtitle {
    /* font-size: 0.9375rem;
    color: var(--gray-700); */
    margin: 0;
}


/* Responsive - Trusted By */
@media screen and (max-width: 992px) {
    .trusted-by-section {
        padding: 3rem 0;
    }
    
    .trusted-by-logos {
        gap: 10px 16px;
    }
    
    .trusted-logo {
        min-width: 80px;
        height: 48px;
    }
    
    .trusted-logo img {
        height: 30px;
        max-width: 110px;
    }
}

@media screen and (max-width: 576px) {
    .trusted-by-section {
        padding: 2.5rem 0;
    }
    .trusted-logo {
        min-width: 60px;
        height: 40px;
    }
    .trusted-logo img {
        height: 24px;
        max-width: 90px;
    }
}

/* ========================================
   THREE REASONS SECTION
   ======================================== */

.reasons-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.reasons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(224, 58, 2, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(21, 55, 98, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.reasons-container {
    /* max-width: 1766px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1; */
}

.reasons-header {
    text-align: center;
    /* margin-bottom: 4rem; */
}

.reasons-title {
    margin-bottom: 1.25rem;
}


.reasons-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.reasons-grid {
    display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 2rem 0;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}



.reason-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100%;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(224, 58, 2, 0.2);
}

.reason-number {
    
    font-size: 4rem;
    font-weight: 800;
    color: var(--orange_color);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.reason-card:hover .reason-number {
    opacity: 0.25;
}

.reason-icon {
    width: 72px;
    height: 72px;
    color: var(--orange_color);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1);
}

.reason-icon svg, .reason-icon img {
    width: 100%;
    height: 100%;
}

.reason-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.reason-card-desc {
    /* font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7; */
    margin-bottom: 1.5rem;
}

.reason-accent-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(224, 58, 2, 0.3) 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.reason-card:hover .reason-accent-line {
    width: 80px;
}

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

.reasons-footer-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black_color);
    margin-bottom: 1rem;
}

.reasons-arrow {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    color: var(--orange_color);
    animation: bounce 2s infinite;
}

.reasons-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* Staggered fade-in animation */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive - Three Reasons */
@media screen and (max-width: 1200px) {
    .reasons-grid {
        gap: 1.5rem 0;
    }
    .reasons-title {
        font-size: 2.25rem;
    }
    .reason-card {
        padding: 24px;
    }
    .reason-card-title {
        font-size: 20px;
    }
    .reason-number {
        font-size: 3rem;
    }
    .reason-icon {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 991px) {
    .reasons-section {
        padding: 60px 0;
    }
    .reasons-grid {
        /* max-width: 600px;
        margin-left: auto;
        margin-right: auto; */
    }
    .reasons-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .reasons-section {
        padding: 3rem 0;
    }
    .reasons-title {
        font-size: 1.625rem;
    }
    .reason-card {
        padding: 20px;
    }
    .reason-icon {
        width: 56px;
        height: 56px;
    }
    .reason-card-title {
        font-size: 1.25rem;
    }
    .reasons-footer-text {
        font-size: 1.125rem;
    }
}

/* ========================================
   CHOOSE YOUR PATH SECTION
   ======================================== */

.path-section {
    background: linear-gradient(180deg, var(--black_color) 0%, var(--secondary_color) 50%, var(--black_color) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.path-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(224, 58, 2, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(21, 55, 98, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.path-container {
    /* max-width: 1766px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1; */
}

.path-title {
    
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.path-title .text-accent {
    color: var(--orange_color);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.path-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.path-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.path-card-launch .path-card-glow {
    background: linear-gradient(135deg, var(--orange_color) 0%, #FF6B35 50%, var(--orange_color) 100%);
}

.path-card-scale .path-card-glow {
    background: linear-gradient(135deg, var(--secondary_color) 0%, #1e4a7a 50%, var(--secondary_color) 100%);
}

.path-card-fix .path-card-glow {
    background: linear-gradient(135deg, var(--orange_color) 0%, var(--secondary_color) 50%, var(--orange_color) 100%);
}

.path-card:hover .path-card-glow {
    opacity: 1;
}

.path-card:hover {
    transform: translateY(-12px);
}

.path-card-content {
    position: relative;
    z-index: 1;
    background: rgba(11, 10, 10, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s ease;
}

.path-card:hover .path-card-content {
    border-color: transparent;
}

.path-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.path-card-launch .path-card-icon {
    color: var(--orange_color);
}

.path-card-scale .path-card-icon {
    color: #5a8cc7;
}

.path-card-fix .path-card-icon {
    color: var(--orange_color);
}

.path-card:hover .path-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.path-card-icon svg {
    width: 100%;
    height: 100%;
}

.path-card-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    width: fit-content;
}

.path-card-launch .path-card-badge {
    background: rgba(224, 58, 2, 0.2);
    color: #FF6B35;
    border: 1px solid rgba(224, 58, 2, 0.3);
}

.path-card-scale .path-card-badge {
    background: rgba(21, 55, 98, 0.3);
    color: #5a8cc7;
    border: 1px solid rgba(21, 55, 98, 0.5);
}

.path-card-fix .path-card-badge {
    background: rgba(224, 58, 2, 0.2);
    color: #FF6B35;
    border: 1px solid rgba(224, 58, 2, 0.3);
}

.path-card-title {
    
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.path-card-tagline {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.path-card-desc {
    /* font-size: 0.9375rem; */
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--gray_color_light);
}

.path-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.path-card-launch .path-card-link {
    color: #FF6B35;
}

.path-card-scale .path-card-link {
    color: #5a8cc7;
}

.path-card-fix .path-card-link {
    color: #FF6B35;
}

.path-card-link:hover {
    gap: 0.75rem;
}

.path-arrow {
    transition: transform 0.3s ease;
}

.path-card-link:hover .path-arrow {
    transform: translateX(4px);
}

/* Connector arrows between cards */
.path-connector {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 24px;
    color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.path-card:last-child .path-connector {
    display: none;
}

/* GCC Banner */
.path-gcc-banner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.path-gcc-banner:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(224, 58, 2, 0.3);
}

.path-gcc-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.path-gcc-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.path-gcc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--orange_color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.path-gcc-link:hover {
    gap: 0.75rem;
    color: #FF6B35;
}

.path-gcc-decoration {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 40px;
    color: var(--orange_color);
    opacity: 0.5;
}

/* Final CTA */
.path-cta {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.path-cta-title {
    
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.path-cta-btn {
    /* display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--orange_color);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(224, 58, 2, 0.4); */
}

.path-cta-btn:hover {
    background: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(224, 58, 2, 0.5);
}

.path-cta-subtext {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* Responsive - Path Section */
@media screen and (max-width: 1200px) {
    .path-card-content {
        padding: 24px;
    }
    .path-card-icon {
        width: 65px;
        height: 65px;
    }
    .path-card-title {
        font-size: 20px;
    }
    .path-title {
        font-size: 2.25rem;
    }
    .path-grid {
        gap: 1.5rem;
    }
    .path-connector {
        display: none;
    }
}

@media screen and (max-width: 1199px) {
    .path-gcc-text {
        font-size: 1rem;
    }
}
@media screen and (max-width: 991px) {
    .path-section {
        padding: 60px 0;
    }
    .path-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .path-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .path-connector {
        display: none;
    }
    .path-gcc-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .path-gcc-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .path-gcc-decoration {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .path-section {
        padding: 3rem 0;
    }
    .path-title {
        font-size: 1.625rem;
    }
    .path-card-content {
        padding: 20px;
    }
    .path-card-icon {
        width: 60px;
        height: 60px;
    }
    .path-card-title {
        font-size: 1.25rem;
    }
    .path-gcc-banner {
        padding: 1.25rem;
    }
}

/* ========================================
   SECTION 04: PROOF / CASE STUDIES
   ======================================== */

.proof-section {
    background: #ffffff;
    margin: 6rem 0;
}

.proof-container {
    /* max-width: 1766px;
    margin: 0 auto;
    padding: 0 2rem; */
}

.proof-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--orange_color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.proof-title {
    
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--black_color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.proof-title .text-accent {
    color: var(--orange_color);
}

/* Case Study Tabs */
.case-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.case-tab {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: var(--bg_gray_new);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    min-width: 320px;
}

.case-tab:hover {
    background: #f0f1f2;
    border-color: rgba(224, 58, 2, 0.2);
}

.case-tab.active {
    background: #ffffff;
    border-color: var(--orange_color);
    box-shadow: 0 4px 20px rgba(224, 58, 2, 0.15);
}

.case-tab-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: var(--secondary_color);
    transition: color 0.3s ease;
    flex: 0 0 auto;
}
.case-tab.active .case-tab-logo {
    color: var(--orange_color);
}
.case-tab-logo svg, .case-tab-logo img {
    width: 100%;
    height: 100%;
}
.case-tab-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}
.case-tab-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black_color);
    line-height: 1.3;
}
.case-tab.active .case-tab-name {
    color: var(--orange_color);
}

.case-tab-industry {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--body_text);
}

.case-tab-stat {
    font-size: 0.8125rem;
    margin-top: 0.125rem;
    color: var(--gray_color_light);
}

/* Case Study Panels */
.case-panels {
    position: relative;
    min-height: 400px;
}

.case-panel {
    display: none;
    animation: fadeInPanel 0.4s ease;
}

.case-panel.active {
    display: block;
}

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

.case-content {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.case-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.case-headline {
    
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black_color);
    line-height: 1.3;
}

.case-body {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    gap: 2rem 0;
    margin-bottom: 2rem;
}
.case-body .case_section_col {
    width: 33.33%;
}
.case-section {
    padding: 1.5rem;
    background: #f8f9fa;
    background: var(--bg_gray_new);
    border-radius: 12px;
    border-left: 4px solid #dee2e6;
    min-height: 100%;
}

.case-section-warning {
    /* border-left-color: #ffc107; */
    background: #fffcf0;
    border-left-color: var(--warning_color);
}

.case-section-outcome {
    border-left-color: var(--orange_color);
    background: #fff8f6;
}
.case-section-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--body_color);
    margin-bottom: 0.75rem;
}

.case-section-warning .case-section-title {
    color: #856404;
    color: var(--warning_color);
}

.case-section-outcome .case-section-title {
    color: var(--orange_color);
}

.case-section-text {
    font-size: 0.9375rem;
    color: var(--body_text);
    line-height: 1.7;
}

.case-outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-outcomes-list li {
    font-size: 0.9375rem;
    color: var(--body_text);
    line-height: 1.8;
    padding-left: 1.25rem;
    position: relative;
}
.case-outcomes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--orange_color);
    border-radius: 50%;
}

.case-outcomes-list li strong {
    color: var(--orange_color);
    font-weight: 700;
}

.case-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.case-attribution {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary_color);
    font-style: italic;
}

.case-note {
    font-size: 0.8125rem;
}

/* Proof Footer */
.proof-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.proof-trust-text {
    margin-bottom: 1rem;
}

.proof-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--orange_color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.proof-link:hover {
    gap: 0.75rem;
    color: #FF6B35;
}

/* Proof Section CTA */
.proof-cta {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, #fff8f6 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(224, 58, 2, 0.1);
}

.proof-cta-title {
    
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black_color);
    margin-bottom: 1.5rem;
}

.proof-cta-btn {
    /* display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--orange_color);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(224, 58, 2, 0.3); */
}

.proof-cta-btn:hover {
    background: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(224, 58, 2, 0.4);
    gap: 1rem;
    color: #ffffff;
}

.proof-cta-subtext {
    font-size: 0.9375rem;
    color: #666;
    margin-top: 1rem;
}

/* ========================================
   SECTION 05: INTERACTIVE TIMELINE
   ======================================== */

.home-timeline-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.timeline-container {
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; */
}

.home-timeline-title {
    
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--black_color);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.home-timeline-title .text-accent {
    color: var(--orange_color);
}

/* Timeline Track */
.home-timeline-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.home-timeline-line {
    position: absolute;
    top: 2rem;
    left: 60px;
    right: 60px;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    transform: translateY(22px);
}

.home-timeline-line-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #FF6B35 100%);
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-timeline-track.animate .home-timeline-line-fill {
    width: 100%;
}

/* Timeline Steps */
.home-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    text-align: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.home-timeline-node {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 3px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.home-timeline-step:hover .home-timeline-node,
.home-timeline-step.active .home-timeline-node {
    border-color: var(--orange_color);
    background: var(--orange_color);
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(224, 58, 2, 0.3);
}

.timeline-node-number {
    font-size: 1.125rem;
    font-weight: 700;
    transition: color 0.3s ease;
    color: var(--body_color);
}

.home-timeline-step:hover .timeline-node-number,
.home-timeline-step.active .timeline-node-number {
    color: #ffffff;
}

.timeline-node-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--orange_color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

.home-timeline-step:hover .timeline-node-pulse,
.home-timeline-step.active .timeline-node-pulse {
    opacity: 1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Timeline Content */
.home-timeline-content {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    width: 100%;
}
.home-timeline-step:hover .home-timeline-content,
.home-timeline-step.active .home-timeline-content {
    border-color: rgba(224, 58, 2, 0.3);
    box-shadow: 0 8px 32px rgba(224, 58, 2, 0.12);
    transform: translateY(-4px);
}

.home-timeline-content .timeline-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange_color);
    background: rgba(224, 58, 2, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.home-timeline-content .timeline-heading {
    
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black_color);
    margin-bottom: 0.5rem;
}

.home-timeline-content .timeline-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.home-timeline-step:hover .home-timeline-content .timeline-details,
.home-timeline-step.active .home-timeline-content .timeline-details {
    max-height: 100px;
    opacity: 1;
}

.home-timeline-content .timeline-details p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Timeline Promises */
.timeline-promises {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.timeline-promise {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-promise.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-promise .icons svg, .timeline-promise .icons img {
    width: 28px;
    height: 28px;
}
.timeline-promise .timeline_prms_text {
    
}
.promise-check {
    width: 28px;
    height: 28px;
    color: var(--orange_color);
}

.promise-check circle {
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
    transition: stroke-dashoffset 0.6s ease;
}

.timeline-promise.visible .promise-check circle {
    stroke-dashoffset: 0;
}

.promise-check-mark {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.4s ease 0.4s;
}

.timeline-promise.visible .promise-check-mark {
    stroke-dashoffset: 0;
}

.timeline-promise span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black_color);
}

/* Responsive - Timeline Section */
@media screen and (max-width: 1199px) {
    .home-timeline-content {
        padding: 20px;
        border-radius: 10px;
    }
    .home-timeline-content .timeline-details p {
        font-size: 14px;
    }
    .timeline-promise span {
        font-size: 15px;
    }
}
@media screen and (max-width: 991px) {
    .home-timeline-section {
        padding: 20px 0 60px;
    }
    
    .home-timeline-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .home-timeline-track {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .home-timeline-line {
        display: none;
    }
    
    .home-timeline-step {
        width: 100%;
        max-width: 400px;
    }
    
    .home-timeline-content .timeline-details {
        max-height: initial;
        opacity: 1;
        overflow: initial;
    }
    
    .timeline-promises {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .home-timeline-section {
        padding: 20px 0 3rem;
    }
    
    .home-timeline-title {
        font-size: 1.625rem;
    }
    
    .timeline-promises {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ========================================
   SECTION 06: DON'T JUST TAKE OUR WORD
   ======================================== */

.reviews-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-container {
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; */
}

.reviews-title {
    
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary_color);
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.reviews-title .text-accent {
    color: var(--orange_color);
}

.reviews-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 3rem;
}

/* Marquee Wrapper */
.reviews-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    padding: 1rem 0;
}

.reviews-marquee {
    position: relative;
}

.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee-scroll 40s linear infinite;
    width: max-content;
}

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Review Card */
.review-card {
    flex-shrink: 0;
    width: 380px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
    border-color: var(--orange_color);
    box-shadow: 0 8px 30px rgba(224, 58, 2, 0.1);
    transform: translateY(-4px);
}

/* Quote */
.review-quote {
    /* font-size: 0.9375rem;
    color: #374151; */
    color: var(--black_color_2);
    margin-bottom: 1.5rem;
    min-height: 80px;
}
/* Author */
.review-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.875rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary_color) 0%, #1e4a7d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    flex: 0 0 auto;
}
.review-avatar img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 50%;
    object-fit: cover;
    object-position: 0 0;
}
.review-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}

.review-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondary_color);
}
.review-role {
    font-size: 0.8125rem;
    color: #6B7280;
    color: var(--body_color);
}

/* Stats Bar */
.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

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

.reviews-stat-number {
    display: block;
    
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange_color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.reviews-stat-label {
    font-size: 0.875rem;
    color: var(--body_color);
}

.reviews-stat-divider {
    width: 1px;
    height: 50px;
    background: #E5E7EB;
}

/* Responsive - Reviews Section */
@media screen and (max-width: 992px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .review-card {
        width: 320px;
    }
}

@media screen and (max-width: 768px) {
    .reviews-stats {
        gap: 20px;
    }
    .reviews-stat-divider {
        display: none;
    }
    
    .reviews-stat-number {
        font-size: 2rem;
    }
    
    .reviews-marquee::before,
    .reviews-marquee::after {
        width: 40px;
    }
}

@media screen and (max-width: 576px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-title {
        font-size: 1.625rem;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .review-card {
        width: 280px;
        padding: 1.25rem;
    }
    
    .review-quote {
        font-size: 0.875rem;
        min-height: 70px;
    }
}
@media screen and (max-width: 480px) {
    .reviews-stats .reviews-stat {
        width: 100%;
    }
}
/* Responsive - Proof Section */
@media screen and (max-width: 1199px) {
    .case-content {
        padding: 30px;
    }
    .case-section {
        padding: 20px;
    }
}
@media screen and (max-width: 991px) {
    .proof-section {
        margin: 60px 0;
    }
    .proof-title {
        font-size: 2rem;
    }
    .case-body {
        /* grid-template-columns: 1fr; */
        gap: 1.5rem 0;
    }
    .case-body .case_section_col {
        width: 100%;
    }
    .case-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    .case-content {
        padding: 24px;
    }
}

@media screen and (max-width: 768px) {
    .case-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    .case-tab {
        padding: 18px 20px;
    }
    .case-footer {
        flex-direction: column;
        text-align: center;
    }
    .proof-cta {
        padding: 30px 22px;
    }
    .proof-cta-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 767px) {
    .case-tab {
        border-radius: 12px;
    }
    .case-tab {
        border-radius: 12px;
        gap: 14px;
        padding: 16px 18px;
    }
    .case-tab-logo {
        width: 50px;
        height: 50px;
    }
    .case-tab-name {
        font-size: 16px;
    }
    .proof-section {
        margin: 3rem 0;
    }
    .proof-title {
        font-size: 1.625rem;
    }
    
    .case-header {
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
    .case-headline {
        font-size: 18px;
    }
    .case-content {
        padding: 20px;
    }
    .case-section {
        padding: 1rem;
    }
}

/* ========================================
   SECTION 07: LEAD CAPTURE FORM
   ======================================== */

.lead-section {
    background: #F9FAFB;
    padding: 5rem 0;
    position: relative;
}

.lead-container {
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 4rem 0;
    align-items: center;
    justify-content: center;
    padding: 0 200px;
}
/* Left Content */
.lead-container .lead-content {
    max-width: 100%;
    padding-right: 40px;
}
.lead-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary_color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead-title .text-accent {
    color: var(--orange_color);
}
.lead-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.lead-benefits {
    margin-bottom: 2rem;
}
.lead-benefits-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary_color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.lead-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.lead-benefits-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 15px;
    color: #374151;
    color: var(--body_text);
    width: 100%;
    text-align: left;
}
.lead-benefits-list .lst_icons {
    flex: 0 0 auto;
    width: 20px;
}
.lead-benefits-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange_color);
    flex-shrink: 0;
}
.lead-benefits-list img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.lead-benefits-list .list_texts {
    flex: 1;
}
.lead-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-style: italic;
    color: var(--gray_color_light);
}
.lead-trust-line .lead_trust_line_text {
   width: 100%;
}
/* Right Form */
.lead-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}
.lead-form {
    padding: 2rem;
}
.lead-form-header {
    margin-bottom: 1.5rem;
}
.lead-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary_color);
    margin-bottom: 0.5rem;
}
.lead-form-desc {
    font-size: 0.9375rem;
    color: #6B7280;
}


.lead-field-hint {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.lead-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Submit Button */
/* Micro Copy */
.lead-micro-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #F3F4F6;
}

.lead-micro-copy span {
    font-size: 0.8125rem;
    /* color: #6B7280; */
    color: var(--body_color);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.lead-micro-copy span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success_color);
    border-radius: 50%;
}

/* Fallback Link */
.lead-fallback {
    text-align: center;
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    /* color: #6B7280; */
}

.lead-fallback a {
    color: var(--orange_color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.lead-fallback a:hover {
    color: var(--primary_hover);
    text-decoration: underline;
}


.lead-form .hsfc-Step__Content .hsfc-Heading {
    margin: 0 !important;
}
/* Responsive - Lead Section */
@media screen and (max-width: 1599px) {
    .lead-container {
        padding: 0 50px;
    }
    .lead-container .lead-content {
        padding-right: 0;
    }
}
@media screen and (max-width: 1299px) {
   .lead-container {
        padding: 0;
    }
}
@media screen and (max-width: 1199px) {
    .lead-benefits-list li {
        font-size: 15px;
    }
}
@media screen and (max-width: 991px) {
    .lead-section {
        padding: 4rem 0;
    }
    
    .lead-container {
        /* grid-template-columns: 1fr; */
        gap: 2.5rem 0;
    }
    
    .lead-content {
        max-width: 100%;
    }
    .lead-benefits-list {
        align-items: center;
    }
    .lead-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .lead-field-row {
        grid-template-columns: 1fr;
    }
    
    .lead-micro-copy {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 576px) {
    .lead-section {
        padding: 3rem 0;
    }
    
    .lead-title {
        font-size: 1.625rem;
    }
    
    .lead-subtitle {
        font-size: 1rem;
    }
    
    .lead-form {
        padding: 1.5rem;
    }
    
    .lead-form-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--orange_color);
    color: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(224, 58, 2, 0.3);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary_hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(224, 58, 2, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   MID-PAGE CONVERSION TIER
   ======================================== */

.conversion-tier-section {
    background: var(--bg_gray_new);
    padding: 60px 0;
}

.conversion-tier-container {
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; */
}

.conversion-tier-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.conversion-tier-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6C757D;
    margin-bottom: 40px;
}

.conversion-tier-grid {
    /* display: grid; */
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 24px 0;
}

.conversion-tier-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #E9ECEF;
    padding: 32px;
    transition: box-shadow 0.3s ease;
    min-height: 100%;
}

.conversion-tier-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.conversion-tier-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.conversion-tier-card-desc {
    margin-bottom: 20px;
}

.conversion-tier-card-link {
    color: var(--orange_color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.conversion-tier-card-link:hover {
    opacity: 0.8;
    color: var(--orange_color);
}

@media screen and (max-width: 1199px) {
    .conversion-tier-card-link {
        font-size: 14px;
    }
    .conversion-tier-card {
        padding: 24px;
    }
}
@media screen and (max-width: 768px) {
    .conversion-tier-grid {
        gap: 16px 0;
    }
    .conversion-tier-title {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 767px) {
    .conversion-tier-card {
        padding: 20px;
    }
}
/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: #ffffff;
    padding: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #E9ECEF;
}

.faq-item:first-child {
    border-top: 1px solid #E9ECEF;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--orange_color);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gray-400);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--orange_color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--orange_color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .faq-title {
        font-size: 1.5rem;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 0;
    }
}


/* =====================================================
   TECH CAPABILITIES SECTION
   ===================================================== */
.tech-cap-section {
    margin: 100px 0;
}

.tech-cap-container {
  
}

.tech-cap-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3.5rem;
    line-height: 1.2;
}

.tech-cap-layout {
    display: flex;
    gap: 2.5rem;
    align-items: start;
    flex-wrap: wrap;
}
.tech-cap-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    width: 300px;
    flex: 0 0 auto;
}
.tech-cap-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    border-radius: 0 14px 14px 0;
    color: var(--body_text);
    width: 100%;
}

.tech-cap-tab:hover {
    color: var(--black_color);
    background: rgba(0, 0, 0, 0.02);
}

.tech-cap-tab.active {
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
    background: var(--primary_color_4);
}
.tech-cap-tab svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}
.tech-cap-tab img {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    filter: grayscale(1);
}
.tech-cap-tab-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.tech-cap-tab.active .tech-cap-tab-icon {
    color: var(--primary);
}
.tech-cap-tab.active img {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    filter: none;
}
.tech-cap-grids {
    min-height: 360px;
    flex: 1;
}

.tech-cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech_cap_grid_panel {
    display: none;
    animation: techFadeIn 0.25s ease;
}

.tech_cap_grid_panel.active {
    display: block;
    animation: techFadeIn 0.25s ease;
}
@keyframes techFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tech-cap-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    transition: border-color 0.2s ease;
}

.tech-cap-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
}

.tech-cap-card .card_text {
    font-weight: 500;
    color: var(--black_color);
    flex: 1;
}

.tech-cap-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .tech-cap-card {
        gap: 12px;
        padding: 15px;
        border-radius: 12px;
    }
    .tech-cap-logo {
        width: 24px;
        height: 24px;
    }
}
@media (max-width: 991px) {
    .tech-cap-section {
        margin: 60px 0;
    }
    .tech-cap-layout {
        gap: 1.5rem 0;
    }
    .tech-cap-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        flex-wrap: nowrap;
    }
    .tech-cap-tabs::-webkit-scrollbar {
        display: none;
    }
    .tech-cap-tab {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 14px 14px 0 0;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        width: auto;
    }
    .tech-cap-tab.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
    }
    .tech-cap-title {
        font-size: 1.75rem;
    }
    .tech-cap-grids {
        min-height: 360px;
        flex: 0 0 auto;
        width: 100%;
    }
}
@media (max-width: 576px) {
    .tech-cap-grid {
        grid-template-columns: 1fr;
    }
    .tech-cap-title {
        font-size: 1.5rem;
    }
}


