*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
}

/* ============================================
   MAIN NAVBAR / HEADER
   ============================================ */
.main-navbar {
    background: transparent;
    transition: background-color 0.3s ease;
    padding: 2rem 0;
    z-index: 1030;
}

.main-navbar.scrolled {
    background:linear-gradient(124.85deg, #0F1729 0%, #344256 50%, #242D42 100%);
    backdrop-filter: blur(10px);
}

/* Navbar Logo */
.navbar-logo {
    width: 250px;
    height: auto;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navigation Links */
.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255) !important;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: #ffffff !important;
}

/* Sign In Link */
.nav-signin {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s ease;
}

.nav-signin:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* Request Demo Button */
.nav-demo-btn {
    background: #f2a900;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-demo-btn:hover {
    background: #e09a00;
    color: #0F1729;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 575.98px) {
    .main-navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        order: 1;
    }
    
    .navbar-toggler {
        order: 2;
        position: relative;
        z-index: 1050;
    }
    
    .navbar-toggler-close {
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1;
    }
    
    .navbar-toggler.show-close .navbar-toggler-icon {
        display: none;
    }
    
    .navbar-toggler.show-close .navbar-toggler-close {
        display: inline-block !important;
    }
    
    .navbar-logo {
        width: 100px;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(124.85deg, #0F1729 0%, #344256 50%, #242D42 100%);
        margin-top: 0;
        padding: 4rem 1.5rem 2rem;
        border-top: none;
        transition: right 0.3s ease-in-out;
        z-index: 1040;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
    }
    
    .navbar-collapse.show {
        right: 0;
    }
    
    /* Overlay backdrop when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(0, 0, 0, 0.5); */
        z-index: 1035;
        animation: fadeIn 0.3s ease-in-out;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    .navbar-nav {
        margin-bottom: 1.5rem;
        flex-direction: column;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1rem;
    }
    
    .navbar-actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: auto;
    }
    
    .nav-signin {
        flex: 1;
        text-align: center;
        padding: 0.75rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        margin-right: 0.5rem;
        font-size: 0.875rem;
    }
    
    .nav-demo-btn {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Overlay when menu is open */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Tablet Responsive - Same layout as desktop with adjusted sizes */
@media (min-width: 576px) and (max-width: 991.98px) {
    .main-navbar {
        padding: 1.25rem 0;
    }
    
    .navbar-logo {
        width: clamp(150px, 18vw, 200px);
    }
    
    /* Keep navbar expanded (no collapse) */
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
        flex-direction: row;
    }
    
    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        margin-bottom: 0;
        gap: 0rem;
        align-items: center;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem !important;
        margin: 0 0.25rem;
        font-size: 0.6rem;
    }
    
    .navbar-actions {
        flex-direction: row;
        gap: 0.75rem;
        padding-top: 0;
        border-top: none;
        margin-top: 0;
    }
    
    .nav-signin {
        padding: 0.5rem 0rem;
        font-size: 0.6rem;
        border: none;
        margin-right: 0;
    }
    
    .nav-demo-btn {
        padding: 0.5rem 1rem;
        font-size: 0.6rem;
    }
    
    /* Hide toggle button on tablet */
    .navbar-toggler {
        display: none;
    }
}

/* Small Laptop Responsive */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .main-navbar {
        padding: 1.5rem 0;
    }
    
    .navbar-logo {
        width: clamp(180px, 18vw, 220px);
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem !important;
        margin: 0 0.375rem;
    }
    
    .nav-signin {
        font-size: 0.8rem;
        padding: 0.5rem 0rem;
    }
    
    .nav-demo-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Medium Desktop Responsive */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .main-navbar {
        padding: 1.75rem 0;
    }
    
    .navbar-logo {
        width: clamp(200px, 16vw, 230px);
    }
    
    .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 0.9375rem !important;
        margin: 0 0.4375rem;
    }
    
    .nav-signin {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .nav-demo-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    /* min-height: 100vh; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark Gradient Overlay */
/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 41, 0.95) 0%, rgba(15, 23, 41, 0.7) 50%, rgba(15, 23, 41, 0.4) 100%);
    z-index: -1;
} */

.hero-content-left{
    padding: 9rem 0 7rem 0;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #E7B0081A;
    border: 1px solid rgba(242, 169, 0, 0.3);
    border-radius: 50px;
    color: #f2a900;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.hero-title-accent {
    color: #f2a900;
    font-size: clamp(2.5rem, 6vw, 7rem);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 1.75rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

/* Hero Lead Text */
.hero-lead {
    font-size: clamp(1.5rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-lead-accent {
    color: #f2a900;
}

/* Hero Description */
.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #FFFFFF99;
    line-height: 1.6;
    max-width: 600px;
}

/* Hero Feature Cards Container */
.hero-feature-cards {
    width: 85%;
}

/* Hero Feature Cards */
.hero-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #E7B00880;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: cardHighlight 4s infinite;
    animation-fill-mode: both;
}

.hero-feature-cards .col-6:nth-child(1) .hero-feature-card {
    animation-delay: 0s;
}

.hero-feature-cards .col-6:nth-child(2) .hero-feature-card {
    animation-delay: 1s;
}

.hero-feature-cards .col-6:nth-child(3) .hero-feature-card {
    animation-delay: 2s;
}

.hero-feature-cards .col-6:nth-child(4) .hero-feature-card {
    animation-delay: 3s;
}

/* .hero-feature-card:hover {
    border-color: #f2a900;
    box-shadow: 0 0 20px rgba(242, 169, 0, 0.2);
    transform: translateY(-2px);
    animation-play-state: paused;
} */

@keyframes cardHighlight {
    0% {
        border-color: #E7B00880;
        box-shadow: none;
        transform: translateY(0);
    }
    1% {
        border-color: #f2a900;
        box-shadow: 0 0 20px rgba(242, 169, 0, 0.2);
        transform: translateY(-2px);
    }
    16.67% {
        border-color: #f2a900;
        box-shadow: 0 0 20px rgba(242, 169, 0, 0.2);
        transform: translateY(-2px);
    }
    17.67% {
        border-color: #E7B00880;
        box-shadow: none;
        transform: translateY(0);
    }
    100% {
        border-color: #E7B00880;
        box-shadow: none;
        transform: translateY(0);
    }
}

.hero-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icon img {
    max-width: 100%;
    height: auto;
}

.hero-feature-title {
    font-size: clamp(0.875rem, 1.5vw, 0.875rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Hero CTA Buttons Container */
.hero-cta-buttons {
    width: 85%;
}

/* Hero Buttons */
.hero-btn-primary {
    background: #f2a900;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.hero-btn-primary:hover {
    background: #e09a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
    color: #0F1729;
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #E7B00880;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Stats */
/* .hero-stats {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
} */

.hero-stats {
    width: 90%;
}

.hero-stats .col-4:not(:last-child) {
    position: relative;
}

.hero-stats .col-4:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #FFFFFF33;
}

.hero-stat-item {
    text-align: start;
    display: flex;
    gap: 8%;
}

.hero-stat-number {
    font-size: clamp(1.75rem, 2vw, 1.875rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: auto;
}

.hero-stat-label {
    font-size: clamp(0.75rem, 1.2vw, 1.125rem);
    color: #FFFFFF66;
    font-weight: 400;
    line-height: 1.4;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.4;
    }
}

/* Hero Section Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-feature-cards,
    .hero-cta-buttons,
    .hero-stats {
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }
    
    .hero-lead {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    .hero-description {
        font-size: clamp(0.9375rem, 3vw, 1rem);
    }
    
    .hero-feature-card {
        padding: 1.25rem 0.75rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }
    
    .hero-feature-card {
        padding: 1rem 0.5rem;
    }
    
    .hero-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
}

/* Global Payroll Intelligence Section */
.global-payroll-section {
    background: white;
}

/* Badge Pill */
.badge-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #E7B0081A;
    color: #E7B008;
    font-weight: 600;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Heading */
.hero-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0F1729;
    margin-bottom: 1.5rem;
}

.hero-heading .text-yellow,
.text-yellow {
    background: linear-gradient(103.37deg, #E7B008 0%, #F59F0A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro Text */
.intro-text {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #0F1729;
}

/* Main Visual Image */
.main-visual {
    position: relative;
}

.rounded-image {
    border-radius: 24px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Text */
.footer-text {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: #0F1729;
}

/* Tagline */
.tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #0F1729;
}

.tagline strong {
    font-weight: 700;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
}

.btn-yellow {
    background: linear-gradient(103.37deg, #E7B008 0%, #F59F0A 100%);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(231, 176, 8, 0.3);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(231, 176, 8, 0.4);
    color: #0F1729;
}

.btn-yellow svg {
    flex-shrink: 0;
}

.btn-outline-white {
    background: white;
    color: #0F1729;
    border: 2px solid #E7B00880;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: linear-gradient(103.37deg, #E7B008 0%, #F59F0A 100%);
    color: #0F1729;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-outline-white:hover svg {
    fill: #0F1729;
}

.btn-outline-white svg {
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 575.98px) {
    .hero-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }

    .intro-text{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
    .footer-text{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-yellow,
    .btn-outline-white {
        width: 100%;
    }
    
    .main-visual {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .rounded-image {
        border-radius: 14px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-heading {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
}

/* Before vs After Comparison Section */
.before-after-section {
    background: white;
}

/* CSS Variables for Dashboard Styling */
:root {
    --dashboard-border: #D5D5D533;
    --dashboard-shadow: 0px 0px 10px 0px #E7B0081A;
}

/* Header Badge */
.badge-challenge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #FFE5E5;
    color: #EF4343;
    font-weight: 600;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Section Heading */
.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
}

.section-subtext {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

/* Comparison Cards */
.comparison-card {
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.card-chaos {
    border: 2px solid #EF43434D;
    background: white;
}

.card-clarity {
    border: 2px solid #E7B00833;
    background: white;
}

/* Card Header */
.card-header-custom {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    /* border-bottom: 1px solid #E5E7EB; */
}

.header-icon-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.header-icon-wrapper.header-icon-red {
    background: #FFE5E5;
}

.header-icon-wrapper.header-icon-yellow {
    background: #FFF9E6;
}

.header-icon-wrapper .header-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-label-before,
.card-label-after {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.card-label-before {
    color: #EF4343;
}

.card-label-after {
    color: #E7B008;
}

.card-title {
    font-size: clamp(1.5rem, 1vw, 2rem);
    font-weight: 700;
    color: #0F1729;
    margin: 0;
}

/* Card Body */
.card-body-custom {
    flex: 1;
}

/* Problem Items */
.problem-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 1.3rem;
}

.problem-item:last-child {
    margin-bottom: 0;
}

.problem-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 10px;
    background: #FFE5E5;
    border-radius: 10px;
    margin-top: 0.25rem;
    object-fit: contain;
}

.problem-content {
    flex: 1;
}

.problem-title {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 0.25rem;
}

.problem-text {
    font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

/* Card Footer */
.card-footer-custom {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 2px dashed #EF43434D;
    border-radius: 24px;
    width: 100%;
}

/* Desktop view - 80% width */
@media (min-width: 992px) {
    .card-footer-custom {
        width: 80%;
    }
}

.pill-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 400;
}

.pill-red {
    background: #FFE5E5;
    color: #EF4343;
}

/* Dashboard Section */
.dashboard-section {
    margin-bottom: 1.5rem;
}

/* Primary Widget Container */
.primary-widget {
    border: 1px solid var(--dashboard-border);
    box-shadow: var(--dashboard-shadow);
    border-radius: 16px;
    padding: 1.25rem;
    background: white;
}

.stat-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    /* margin-bottom: 0.75rem; */
}

.stat-value {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #0F1729;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: #64748B;
}

/* Metric Cards */
.metric-card {
    background: white;
    border: 1px solid var(--dashboard-border);
    box-shadow: var(--dashboard-shadow);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.metric-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
}

.metric-value {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    font-weight: 700;
    color: #0F1729;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.3;
}

/* Solution Items */
.solution-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #FFF9E6;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.solution-item:last-child {
    margin-bottom: 0;
}

.solution-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.solution-text {
    font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
    font-weight: 500;
    color: #0F1729;
}

/* Responsive Adjustments for Before/After Section */
@media (max-width: 575.98px) {
    .section-heading{
        font-size: clamp(1.3rem, 6vw, 2.5rem)
    }
    .section-subtext{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
    .comparison-card {
        padding: 1.5rem;
    }
    
    .card-header-custom {
        margin-bottom: 1.25rem;
    }
    
    .problem-item {
        padding: 0.875rem;
    }
    
    .stat-card,
    .metric-card {
        padding: 0.875rem;
    }
    
    .primary-widget {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .metric-icon {
        width: 24px;
        height: 24px;
    }
    
    .dashboard-section {
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .comparison-card {
        padding: 1.75rem;
    }
}

/* Product Architecture Flow Section */
.product-architecture-section {
    background-color: #020617;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    color: #E5E7EB;
}

.solution-badge {
    display: inline-block;
    padding: 0.45rem 1.25rem;
    background: rgba(231, 176, 8, 0.12);
    color: #E7B008;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.architecture-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #F9FAFB;
}

.architecture-heading .architecture-accent {
    color: #F2A900;
}

.architecture-subtext {
    max-width: 85%;
    font-size: clamp(1.25rem, 1.8vw, 1.05rem);
    color: #9CA3AF;
    line-height: 1.6;
}

.flow-card {
    position: relative;
    background: #3C4A5D;
    border-radius: 16px;
    border: 1px solid #fff;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.flow-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    /* border: 1px solid rgba(148, 163, 184, 0.6); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-card-content {
    position: relative;
    z-index: 2;
}

.flow-card-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 0.35rem;
}

.flow-card-subtitle {
    font-size: 1rem;
    color: #9CA3AF;
    margin-bottom: 0.75rem;
}

.flow-card-tags {
    position: relative;
    z-index: 2;
}

.flow-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: #FFFFFF1A;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #E5E7EB;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.flow-card-number {
    position: absolute;
    right: -0.5rem;
    bottom: -1rem;
    font-size: clamp(6.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0 1rem;
}

.flow-footer-text {
    font-size: 1.25rem;
    color: #fff;
}

@media (max-width: 575.98px) {
    .architecture-heading {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .architecture-subtext{
        max-width: 100%;
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }

    .flow-card {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .flow-card-title {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }

    .flow-card-subtitle {
        font-size: 0.875rem;
    }
    .flow-footer-text{
        font-size: clamp(1rem, 2vw, 1.125rem);
    }
    .flow-card-number {
        right: 1.25rem;
        bottom: 1rem;
        font-size: 2.4rem;
    }

    .flow-card-inner {
        padding-right: 3rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    background-image: url('../images/how-it-works-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0;
}

.how-it-works-header {
    margin-bottom: 3rem;
}

.how-it-works-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #E7B0081A;
    color: #F2A900;
    border-radius: 50px;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.how-it-works-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.how-it-works-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #FFFFFFB2;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Process Cards Container */
.how-it-works-cards {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Process Card */
.how-it-works-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    flex: 0 0 calc(20% - 1.2rem);
    min-width: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Numbered Badge - Pill Shape */
.how-it-works-card-number {
    position: absolute;
    top: 0;
    left: 20px;
    transform: translateY(-50%);
    padding: 0.375rem 0.875rem;
    background: #F2A900;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 700;
    color: #000000;
    line-height: 1;
    white-space: nowrap;
}

/* Card Content */
.how-it-works-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-top: 0.5rem;
}

/* Card Icon Container - Rounded Square with Light Yellow Background */
.how-it-works-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF0D;
    border-radius: 12px;
    padding: 0.75rem;
}

.how-it-works-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(73%) sepia(95%) saturate(2000%) hue-rotate(5deg) brightness(1.1) contrast(1);
}

/* Card Title */
.how-it-works-card-title {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

/* Card Description */
.how-it-works-card-description {
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    color: #FFFFFF99;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Footer Text */
.how-it-works-footer {
    margin-top: 3rem;
}

.how-it-works-footer-text {
    font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
    color: #FFFFFF66;
    line-height: 1.7;
    margin: 0;
}

.how-it-works-footer-highlight {
    color: #F2A900;
    font-weight: 700;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .how-it-works-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .how-it-works-card {
        flex: none;
    }

    .how-it-works-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767.98px) {
    .how-it-works-section {
        padding: 3rem 0;
    }

    .how-it-works-header {
        margin-bottom: 2rem;
    }

    .how-it-works-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    .how-it-works-card {
        flex: 1 1 100%;
        width: 100%;
        min-width: unset;
    }

    .how-it-works-card-number {
        left: 16px;
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }

    .how-it-works-card-icon {
        width: 48px;
        height: 48px;
    }

    .how-it-works-footer {
        margin-top: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .how-it-works-section {
        padding: 2.5rem 0;
    }

    .how-it-works-card {
        padding: 1.5rem;
    }

    .how-it-works-card-number {
        left: 12px;
        padding: 0.25rem 0.625rem;
        font-size: 0.6875rem;
    }

    .how-it-works-card-icon {
        width: 44px;
        height: 44px;
    }
}

/* Call to Action Section */
.cta-section {
    background-image: url('../images/CTA-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.cta-content {
    max-width: 100%;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
    margin: 0;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #E7B0081A;
    color: #E7B008;
    border-radius: 50px;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
    margin: 0;
}

.cta-heading-accent {
    color: #F2A900;
}

.cta-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cta-btn-primary {
    background: #F2A900;
    color: #fff;
}

.cta-btn-primary:hover {
    background: #E7B008;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid #E5E7EB;
    color: #0F1729;
}

.cta-btn-secondary:hover {
    background: #F2A900;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.cta-btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.cta-btn-primary .cta-btn-icon {
    filter: brightness(1);
}

.cta-btn-secondary .cta-btn-icon {
    filter: brightness(0) invert(1);
}

/* CTA Footer */
.cta-footer {
    margin-top: 3rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.cta-divider {
    border-top: 1px solid #E5E7EB;
    width: 100%;
    margin: 0 auto;
}

.cta-footer-text {
    font-size: clamp(0.875rem, 1.2vw, 0.875rem);
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.cta-trio {
    margin-top: 1rem;
    gap: 3rem !important;
}

.cta-trio-item {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    color: #6B728080;
    white-space: nowrap;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .cta-section {
        padding: 4rem 0;
        min-height: 50vh;
    }

    .cta-trio {
        gap: 2rem !important;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767.98px) {
    .cta-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .cta-heading {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .cta-subtitle {
        max-width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .cta-trio {
        flex-direction: column;
        gap: 1rem !important;
        align-items: center;
    }

    .cta-trio-item {
        font-size: clamp(0.9375rem, 3vw, 1.125rem);
    }
}

/* Footer Section */
.main-footer {
    background-color: #0F1729;
    color: #FFFFFF;
    padding: 4rem 0 2.5rem 0;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: auto;
    max-width: 180px;
    width: auto;
}

/* Footer Description */
.footer-description {
    font-size: clamp(0.875rem, 1.2vw, 0.875rem);
    color: #FFFFFF99;
    line-height: 1.7;
    margin: 0;
    max-width: 90%;
}

/* Footer Social Icons */
.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Footer Headings */
.footer-heading {
    font-size: clamp(1rem, 1.3vw, 1rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #FFFFFF99;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.1vw, 1.125rem);
    line-height: 1.6;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Footer Divider */
.footer-divider {
    border-top: 1px solid #FFFFFF1A;
    opacity: 1;
    margin: 2.5rem 0 1.5rem 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
}

.footer-copyright {
    font-size: clamp(0.8125rem, 1vw, 0.875rem);
    color: #FFFFFF99;
    margin: 0;
    line-height: 1.6;
}

.footer-compliance {
    gap: 1.5rem !important;
}

.footer-compliance-item {
    font-size: clamp(0.8125rem, 1vw, 0.875rem);
    color: #FFFFFF99;
    line-height: 1.6;
    white-space: nowrap;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .main-footer {
        padding: 3.5rem 0 2rem 0;
    }

    .footer-description {
        max-width: 100%;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767.98px) {
    .main-footer {
        padding: 3rem 0 2rem 0;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .footer-description {
        max-width: 100%;
    }

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

    .footer-copyright {
        text-align: center;
        margin-bottom: 1rem !important;
    }

    .footer-compliance {
        justify-content: center;
        gap: 1rem !important;
    }

    .footer-compliance-item {
        font-size: 0.8125rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .main-footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .footer-logo-img {
        max-width: 120px;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-social-icon svg,
    .footer-social-icon-img {
        width: 18px;
        height: 18px;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-compliance {
        flex-direction: column;
        gap: 0.75rem !important;
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-badge {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }

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

/* Value Proposition Section */
.value-proposition-section {
    background: white;
}

.value-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(242, 169, 0, 0.15);
    color: #F2A900;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1;
}

.value-heading .text-yellow-gradient {
    background: linear-gradient(103.37deg, #E7B008 0%, #F59F0A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-intro {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #64748B;
    line-height: 1.6;
    max-width: 95%;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #F3F4F680;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    background: rgba(242, 169, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 0.35rem;
}

.feature-subtitle {
    font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* Dashboard Image */
.dashboard-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-image {
    border-radius: 16px;
    box-shadow: 0px 20px 60px -12px rgba(0, 0, 0, 0.25);
    max-width: 100%;
    height: auto;
}

/* Footer Quote */
.value-quote {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #64748B;
    font-style: italic;
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}


/* Responsive Adjustments for Value Proposition */
@media (max-width: 991.98px) {
    .value-proposition-section .row {
        text-align: center;
    }

    .value-badge {
        display: inline-block;
    }

    .value-intro {
        max-width: 100%;
    }

    .dashboard-image-wrapper {
        margin-top: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .value-badge{
        font-size: clamp(0.5rem, 1vw, 0.875rem);
    }

    .value-heading {
        font-size: clamp(1rem, 2.9vw, 2.25rem);
    }

    .value-intro {
        font-size: clamp(0.5rem, 1vw, 1.05rem);
        margin-bottom: 0.5rem;
    }

    .feature-card {
        padding: 0.7rem;
    }

    .feature-title {
        font-size: clamp(0.8rem, 1.2vw, 1.05rem);
    }

    .feature-subtitle {
        font-size: clamp(0.5rem, 1vw, 0.9rem);
    }

    .value-quote {
        font-size: clamp(0.7rem, 1.1vw, 1.05rem);
    }

    .dashboard-image-wrapper {
        padding-left: 0.5rem;
    }
    .feature-icon-box{
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

@media (min-width: 1025px) and (max-width: 1199.98px) {
    .value-badge{
        font-size: clamp(0.5rem, 1vw, 0.875rem);
    }

    .value-heading {
        font-size: clamp(1rem, 2.9vw, 2.25rem);
    }

    .value-intro {
        font-size: clamp(0.5rem, 1vw, 1.05rem);
        margin-bottom: 0.5rem;
    }

    .feature-card {
        padding: 0.7rem;
    }

    .feature-title {
        font-size: clamp(0.8rem, 1.2vw, 1.05rem);
    }

    .feature-subtitle {
        font-size: clamp(0.5rem, 1vw, 0.9rem);
    }

    .value-quote {
        font-size: clamp(0.7rem, 1.1vw, 1.05rem);
    }

    .dashboard-image-wrapper {
        padding-left: 0.5rem;
    }
    .feature-icon-box{
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .dashboard-image{
        max-width: 90%;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .value-badge{
        font-size: clamp(0.5rem, 1vw, 0.875rem);
    }

    .value-heading {
        font-size: clamp(1rem, 2.9vw, 2.25rem);
    }

    .value-intro {
        font-size: clamp(0.5rem, 1vw, 1.05rem);
        margin-bottom: 0.5rem;
    }

    .feature-card {
        padding: 0.7rem;
    }

    .feature-title {
        font-size: clamp(0.8rem, 1.2vw, 1.05rem);
    }

    .feature-subtitle {
        font-size: clamp(0.5rem, 1vw, 0.9rem);
    }

    .value-quote {
        font-size: clamp(0.7rem, 1.1vw, 1.05rem);
    }

    .dashboard-image-wrapper {
        padding-left: 0.5rem;
    }
    .feature-icon-box{
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .dashboard-image{
        max-width: 85%;
    }
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
    .value-badge{
        font-size: clamp(0.5rem, 1vw, 0.65rem);
    }

    .value-heading {
        font-size: clamp(1rem, 2.9vw, 2rem);
    }

    .value-intro {
        font-size: clamp(0.5rem, 1vw, 0.8rem);
        margin-bottom: 0.5rem;
    }

    .feature-card {
        padding: 0.7rem;
    }

    .feature-title {
        font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    }

    .feature-subtitle {
        font-size: clamp(0.5rem, 1vw, 0.7rem);
    }

    .value-quote {
        font-size: clamp(0.7rem, 1.1vw, 1.05rem);
    }

    .dashboard-image-wrapper {
        padding-left: 0.5rem;
    }
    .feature-icon-box{
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .dashboard-image{
        max-width: 100%;
    }
}

@media (min-width: 1600px) and (max-width: 1799.98px) {
    .value-badge{
        font-size: clamp(0.5rem, 1vw, 0.65rem);
    }

    .value-heading {
        font-size: clamp(1rem, 2.9vw, 2rem);
    }

    .value-intro {
        font-size: clamp(0.5rem, 1vw, 0.8rem);
        margin-bottom: 0.5rem;
    }

    .feature-card {
        padding: 0.7rem;
    }

    .feature-title {
        font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    }

    .feature-subtitle {
        font-size: clamp(0.5rem, 1vw, 0.7rem);
    }

    .value-quote {
        font-size: clamp(0.7rem, 1.1vw, 1.05rem);
    }

    .dashboard-image-wrapper {
        padding-left: 0.5rem;
    }
    .feature-icon-box{
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .dashboard-image{
        max-width: 85%;
    }
}

@media (max-width: 575.98px) {
    .value-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }
    .value-intro{
        font-size: clamp(0.75rem, 2vw, 1.125rem)
    }
    .feature-card {
        padding: 1rem;
    }

    .feature-icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    .dashboard-image {
        border-radius: 12px;
    }
}

/* Core Capabilities Section */
.core-capabilities-section {
    background: white;
    padding: 4rem 0;
}

.capabilities-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(242, 169, 0, 0.15);
    color: #F2A900;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capabilities-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
}

.capabilities-description {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #6B7280;
    line-height: 1.7;
    max-width: 80%;
    margin: 0 auto;
}

/* Capability Cards */
.capability-card {
    background: linear-gradient(180deg, rgba(248, 250, 255, 0.1) 0%, rgba(223, 235, 251, 0.1) 100%);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.capability-card:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0px 0px 20px 0px #00000040;
}

.capability-image-wrapper {
    width: 100%;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.capability-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.capability-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Horizontal Layout for Middle Row Cards */
.capability-card-horizontal {
    display: flex;
    flex-direction: column;
}

.capability-card-horizontal .capability-content {
    margin-bottom: 0;
    order: 2;
}

.capability-card-horizontal .capability-image-wrapper {
    margin-bottom: 1.25rem;
    min-height: 180px;
    order: 1;
}

@media (min-width: 992px) {
    .capability-card-horizontal {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .capability-card-horizontal .capability-content {
        flex: 0 0 35%;
        max-width: 35%;
        order: 1;
        margin-bottom: 0;
    }

    .capability-card-horizontal .capability-image-wrapper {
        flex: 0 0 65%;
        max-width: 65%;
        margin-bottom: 0;
        order: 2;
    }
}

.capability-title {
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.capability-text {
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments for Core Capabilities */
@media (max-width: 991.98px) {
    .core-capabilities-section {
        padding: 3rem 0;
    }

    .capability-image-wrapper {
        min-height: 160px;
    }
}

@media (max-width: 767.98px) {
    .core-capabilities-section {
        padding: 2.5rem 0;
    }

    .capability-card {
        padding: 1.25rem;
    }

    .capability-image-wrapper {
        min-height: 140px;
        margin-bottom: 1rem;
    }

    .capability-title {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .core-capabilities-section {
        padding: 2rem 0;
    }

    .capabilities-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }

    .capability-card {
        padding: 1rem;
    }

    .capability-image-wrapper {
        min-height: 120px;
    }
    .capabilities-description{
        font-size: clamp(0.75rem, 2vw, 1.125rem)
    }
}

/* Executive Outcomes Section */
.executive-outcomes-section {
    background-image: url('../images/clarity-sec-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #F9FAFB;
    position: relative;
    padding: 4rem 0;
}

.executive-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    color: #E7B008;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.executive-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #F9FAFB;
    line-height: 1.2;
}

.executive-heading .text-yellow-gradient-exec {
    background: linear-gradient(99.66deg, #E7B008 0%, #F59F0A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.executive-intro {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #9CA3AF;
    line-height: 1.7;
    max-width: 90%;
    margin: 0 auto;
}

/* Desktop view - 70% width */
@media (min-width: 992px) {
    .executive-intro {
        max-width: 70%;
    }
}

.executive-subheading {
    font-size: clamp(1.125rem, 1.8vw, 1.25rem);
    font-weight: 600;
    color: #F9FAFB;
}

/* Insight Cards */
.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(231, 176, 8, 0.3);
    transform: translateX(4px);
}

.insight-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: rgba(231, 176, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.insight-text {
    flex: 1;
    font-size: clamp(0.9375rem, 1.3vw, 1rem);
    color: #FFFFFFE5;
    line-height: 1.5;
}

.insight-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Dashboard Graphs */
.dashboard-graphs-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.dashboard-graphs-image {
    /* border-radius: 16px; */
    /* box-shadow: 0px 20px 60px -12px rgba(0, 0, 0, 0.4),
                0px 0px 40px rgba(231, 176, 8, 0.1); */
    max-width: 100%;
    height: auto;
}

/* Footer Text */
.executive-footer {
    font-size: clamp(1.25rem, 1.3vw, 1.25rem);
    color: #fff;
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 2rem;
}

/* Responsive Adjustments for Executive Outcomes */
@media (max-width: 991.98px) {
    .executive-outcomes-section {
        padding: 3rem 0;
    }

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

    .insight-cards {
        margin-bottom: 2rem;
    }

    .dashboard-graphs-wrapper {
        margin-top: 2rem;
        padding: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .executive-outcomes-section {
        padding: 2.5rem 0;
    }

    .executive-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }

    .insight-card {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
    }

    .insight-icon-box {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .insight-icon {
        width: 18px;
        height: 18px;
    }

    .insight-text {
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
    }

    .insight-arrow {
        width: 20px;
        height: 20px;
    }

    .insight-arrow svg {
        width: 14px;
        height: 14px;
    }

    .dashboard-graphs-image {
        border-radius: 12px;
    }

    .executive-footer {
        font-size: clamp(0.8125rem, 2vw, 0.875rem);
        padding-top: 1.5rem;
    }
    .executive-intro{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
}

/* Analytics That Matter Section */
.analytics-section {
    background: white;
    padding: 4rem 0;
}

.analytics-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(242, 169, 0, 0.15);
    color: #F2A900;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analytics-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
}

.analytics-heading .text-yellow-analytics {
    color: #F2A900;
}

.analytics-description {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #6B7280;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Analytics Cards */
.analytics-card {
    background: white;
    border: 1px solid #D5D5D533;
    /* box-shadow: 0px 0px 10px 0px #E7B0081A; */
    box-shadow: 0px 0px 20px 0px #3A34241A;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

/* Headcount Card */
.analytics-card-headcount {
    padding: 1rem 1.5rem;
}

.headcount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex: 1; */
}

.headcount-icon {
    width: 48px;
    height: 48px;
}

.headcount-label {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: #64748B;
    margin-bottom: 0.5rem;
}

.headcount-value {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
}

.headcount-chart {
    flex-shrink: 0;
    margin-left: 1rem;
    max-width: 100%;
}

.headcount-chart img {
    width: 100%;
    height: auto;
}

/* Metric Cards */
.analytics-card-metric {
    padding: 0.8rem;
    min-height: 140px;
}

.metric-icon {
    width: 50px;
    height: 50px;
}

.metric-label {
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    color: #64748B;
    margin-bottom: 0.5rem;
    text-align: center;
}

.metric-value {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #0F1729;
    text-align: center;
    line-height: 1.2;
}

/* Chart Cards */
.analytics-card-chart {
    padding: 1.5rem;
}

.chart-title {
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 1rem;
}

.chart-content {
    width: 100%;
}

.chart-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* CTA Button */
.btn-analytics-cta {
    background: #F2A900;
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(242, 169, 0, 0.3);
}

.btn-analytics-cta:hover {
    background: #E7B008;
    color: #0F1729;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(242, 169, 0, 0.4);
}

.btn-analytics-cta svg {
    flex-shrink: 0;
}

/* Responsive Adjustments for Analytics Section */
@media (min-width: 992px) and (max-width: 1024px) {
    .analytics-card-metric {
        padding: 0.9rem;
        min-height: 130px;
    }

    .metric-label {
        font-size: clamp(0.7rem, 0.9vw, 0.75rem);
    }

    .metric-value {
        font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    }
}

@media (min-width: 1025px) and (max-width: 1199.98px) {
    .analytics-card-metric {
        padding: 1rem;
        min-height: 135px;
    }

    .metric-label {
        font-size: clamp(0.72rem, 0.95vw, 0.78rem);
    }

    .metric-value {
        font-size: clamp(1rem, 1.5vw, 1.35rem);
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .analytics-card-metric {
        padding: 1.05rem;
        min-height: 140px;
    }

    .metric-label {
        font-size: clamp(0.75rem, 1vw, 0.8rem);
    }

    .metric-value {
        font-size: clamp(1.2rem, 1.9vw, 1.4rem);
    }
}

@media (max-width: 991.98px) {
    .analytics-section {
        padding: 3rem 0;
    }

    .headcount-chart {
        max-width: 150px;
        margin-left: 0.75rem;
    }

    .analytics-card-headcount {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .analytics-section {
        padding: 2.5rem 0;
    }

    .headcount-content {
        margin-bottom: 1rem;
    }

    .headcount-chart {
        max-width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }

    .analytics-card-headcount .d-flex {
        flex-direction: column;
    }

    .analytics-card-metric {
        min-height: 120px;
        padding: 1rem;
    }

    .metric-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575.98px) {
    .analytics-section {
        padding: 2rem 0;
    }

    .analytics-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }

    .analytics-card {
        padding: 1.25rem;
    }

    .analytics-card-headcount {
        padding: 1.25rem;
    }

    .headcount-icon {
        width: 40px;
        height: 40px;
    }

    .headcount-value {
        font-size: clamp(1.125rem, 3vw, 1.375rem);
    }

    .analytics-card-metric {
        min-height: 110px;
        padding: 0.875rem;
    }

    .metric-icon {
        width: 24px;
        height: 24px;
    }

    .metric-value {
        font-size: clamp(1.125rem, 3vw, 1.375rem);
    }

    .chart-title {
        font-size: clamp(1rem, 2vw, 1.125rem);
        margin-bottom: 0.75rem;
    }

    .btn-analytics-cta {
        padding: 0.75rem 1.5rem;
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
    }
    .analytics-description{
        font-size: clamp(0.75rem, 2vw, 1.125rem)
    }
}

/* Compliance & Trust Section */
.compliance-trust-section {
    background: white;
    padding: 4rem 0;
}

.security-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(242, 169, 0, 0.15);
    color: #F2A900;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compliance-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
}

.compliance-heading .text-yellow-compliance {
    color: #F2A900;
}

.compliance-description {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #6B7280;
    line-height: 1.7;
    max-width: 95%;
}

/* Security Features List */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-feature-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: rgba(242, 169, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.security-feature-content {
    flex: 1;
}

.security-feature-title {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.security-feature-text {
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

/* Enterprise Protected Card */
.enterprise-protected-card {
    background: #0F1729;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    color: #F9FAFB;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.protected-header {
    margin-top: 4rem !important;
}

.protected-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 0.5rem;
}

.protected-subtitle {
    font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
    color: #9CA3AF;
    margin: 0;
}

/* Security Animation Area */
.security-animation-area {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    flex: 1;
}

.concentric-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    mix-blend-mode: screen;
    isolation: isolate;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: #CBA65F4D;
    animation: pulse-glow-1 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0s;
}

.circle-2 {
    width: 180px;
    height: 180px;
    background: #CBA65F33;
    animation: pulse-glow-2 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.75s;
    box-shadow: inset 0 0 20px rgba(15, 23, 42, 0.3);
}

.circle-3 {
    width: 240px;
    height: 240px;
    background: #CBA65F26;
    animation: pulse-glow-3 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.5s;
    box-shadow: inset 0 0 25px rgba(15, 23, 42, 0.3);
}

.circle-4 {
    width: 300px;
    height: 300px;
    background: #CBA65F1A;
    animation: pulse-glow-4 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 2.25s;
    box-shadow: inset 0 0 30px rgba(15, 23, 42, 0.3);
}

@keyframes pulse-glow-1 {
    0%, 100% {
        opacity: 0.3;
        transform: translateZ(0) scale(0.98);
        box-shadow: 0 0 10px rgba(203, 166, 95, 0.2);
    }
    25% {
        opacity: 0.5;
        transform: translateZ(0) scale(0.99);
        box-shadow: 0 0 15px rgba(203, 166, 95, 0.3);
    }
    50% {
        opacity: 0.7;
        transform: translateZ(0) scale(1);
        box-shadow: 0 0 25px rgba(203, 166, 95, 0.5);
    }
    75% {
        opacity: 0.5;
        transform: translateZ(0) scale(0.99);
        box-shadow: 0 0 15px rgba(203, 166, 95, 0.3);
    }
}

@keyframes pulse-glow-2 {
    0%, 100% {
        opacity: 0.2;
        transform: translateZ(0) scale(0.98);
        box-shadow: 0 0 12px rgba(203, 166, 95, 0.15);
    }
    25% {
        opacity: 0.4;
        transform: translateZ(0) scale(0.99);
        box-shadow: 0 0 18px rgba(203, 166, 95, 0.25);
    }
    50% {
        opacity: 0.6;
        transform: translateZ(0) scale(1);
        box-shadow: 0 0 30px rgba(203, 166, 95, 0.4);
    }
    75% {
        opacity: 0.4;
        transform: translateZ(0) scale(0.99);
        box-shadow: 0 0 18px rgba(203, 166, 95, 0.25);
    }
}

@keyframes pulse-glow-3 {
    0%, 100% {
        opacity: 0.15;
        transform: translateZ(0) scale(0.98);
        box-shadow: 0 0 15px rgba(203, 166, 95, 0.12);
    }
    25% {
        opacity: 0.325;
        transform: translateZ(0) scale(0.99);
        box-shadow: 0 0 20px rgba(203, 166, 95, 0.2);
    }
    50% {
        opacity: 0.5;
        transform: translateZ(0) scale(1);
        box-shadow: 0 0 35px rgba(203, 166, 95, 0.35);
    }
    75% {
        opacity: 0.325;
        transform: translateZ(0) scale(0.99);
        box-shadow: 0 0 20px rgba(203, 166, 95, 0.2);
    }
}

@keyframes pulse-glow-4 {
    0%, 100% {
        opacity: 0.1;
        transform: translateZ(0) scale(0.98);
        box-shadow: 0 0 18px rgba(203, 166, 95, 0.1);
    }
    25% {
        opacity: 0.25;
        transform: translateZ(0) scale(0.99);
        box-shadow: 0 0 25px rgba(203, 166, 95, 0.18);
    }
    50% {
        opacity: 0.4;
        transform: translateZ(0) scale(1);
        box-shadow: 0 0 40px rgba(203, 166, 95, 0.3);
    }
    75% {
        opacity: 0.25;
        transform: translateZ(0) scale(0.99);
        box-shadow: 0 0 25px rgba(203, 166, 95, 0.18);
    }
}

.security-logo-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-logo {
    width: 70px;
    height: 112px;
    object-fit: contain;
}

/* Protected Features List */
.protected-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.protected-feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: #FFFFFF0D;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.protected-feature-text {
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    color: #F9FAFB;
    font-weight: 500;
}

.protected-check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    /* background: rgba(242, 169, 0, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Certified & Compliant Footer */
.certified-heading {
    font-size: clamp(1.5rem, 2.5vw, 1.125rem);
    font-weight: 700;
    color: #0F1729;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.certification-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    font-size: clamp(0.8125rem, 1.1vw, 0.75rem);
    color: #6B7280;
    font-weight: 400;
}

/* Responsive Adjustments for Compliance & Trust */
@media (max-width: 991.98px) {
    .compliance-trust-section {
        padding: 3rem 0;
    }

    .enterprise-protected-card {
        margin-top: 2rem;
        min-height: 450px;
    }

    .security-animation-area {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .compliance-trust-section {
        padding: 2.5rem 0;
    }

    .compliance-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }

    .security-features {
        gap: 1.25rem;
    }

    .security-feature-icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .security-feature-icon {
        width: 20px;
        height: 20px;
    }

    .enterprise-protected-card {
        padding: 1.5rem 1.25rem;
        min-height: 400px;
    }

    .security-animation-area {
        height: 200px;
        margin: 1.5rem 0;
    }

    .circle-1 {
        width: 100px;
        height: 100px;
        background: #CBA65F4D;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
        background: #CBA65F33;
        box-shadow: inset 0 0 15px rgba(15, 23, 42, 0.3);
    }

    .circle-3 {
        width: 200px;
        height: 200px;
        background: #CBA65F26;
        box-shadow: inset 0 0 20px rgba(15, 23, 42, 0.3);
    }

    .circle-4 {
        width: 250px;
        height: 250px;
        background: #CBA65F1A;
        box-shadow: inset 0 0 25px rgba(15, 23, 42, 0.3);
    }

    .security-logo {
        width: 72px;
        height: 88px;
    }

    .protected-features-list {
        gap: 0.625rem;
    }

    .protected-feature-item {
        padding: 0.75rem 0.875rem;
    }

    .certification-badges {
        gap: 0.5rem;
    }

    .certification-badge {
        padding: 0.45rem 1rem;
        font-size: clamp(0.75rem, 2vw, 0.8125rem);
    }
    .compliance-description{
        font-size: clamp(0.75rem, 2vw, 1.125rem)
    }
}

/* Designed for Executives Section */
.executives-section {
    background-image: url('../images/executive-sec-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    color: #F9FAFB;
}

.executives-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    color: #F2A900;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.executives-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #F9FAFB;
    line-height: 1.2;
}

.executives-heading .text-yellow-executives {
    color: #F2A900;
}

.executives-intro {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #9CA3AF;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Executive Cards */
.executive-card {
    background: linear-gradient(180deg, #242D42 0%, #0F1729 100%);
    border: 1px solid #48566A4D;
    border-radius: 16px;
    box-shadow: 0px 0px 10px 0px #CACACA40;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 0px 20px 0px #CACACA60;
}

/* Card Header */
.executive-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.executive-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.executive-icon-cfo {
    background: rgba(231, 176, 8, 0.15);
}

.executive-icon-chro {
    background: rgba(8, 142, 175, 0.15);
}

.executive-icon-payroll {
    background: rgba(22, 162, 73, 0.15);
}

.executive-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.executive-title-area {
    flex: 1;
}

.executive-role {
    display: block;
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.executive-role-cfo {
    color: #E7B008;
}

.executive-role-chro {
    color: #088EAF;
}

.executive-role-payroll {
    color: #16A249;
}

.executive-card-title {
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: #F9FAFB;
    margin: 0;
    line-height: 1.3;
}

.executive-description {
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Dashboard Preview Widget */
.executive-dashboard-preview {
    background: #FFFFFF1A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dashboard-preview-label {
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    color: #9CA3AF;
    font-weight: 500;
}

.dashboard-chart-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.6;
}


.dashboard-metric {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 0.5rem; */
    text-align: center;
    flex-direction: column;
    background-color: #FFFFFF0D;
    border-radius: 12px;
    padding: 1rem;
}

.dashboard-metric:last-child {
    margin-bottom: 0;
}

.metric-label {
    font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
    color: #9CA3AF;
    font-weight: 500;
}

.metric-value {
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 700;
}

.metric-value-cfo {
    color: #E7B008;
}

.metric-value-chro {
    color: #088EAF;
}

.metric-value-payroll {
    color: #16A249;
}

/* Feature List */
.executive-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.executive-features-list li {
    font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
    color: #D1D5DB;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.executive-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.executive-features-cfo li::before {
    background: #E7B008;
}

.executive-features-chro li::before {
    background: #088EAF;
}

.executive-features-payroll li::before {
    background: #16A249;
}

/* Responsive Adjustments for Executives Section */
@media (max-width: 991.98px) {
    .executives-section {
        padding: 3rem 0;
    }

    .executive-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .executives-section {
        padding: 2.5rem 0;
    }

    .executives-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }

    .executive-card {
        padding: 1.25rem;
    }

    .executive-card-header {
        gap: 0.875rem;
    }

    .executive-icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .executive-icon {
        width: 20px;
        height: 20px;
    }

    .executive-dashboard-preview {
        padding: 0.875rem;
    }
    .executives-intro{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
}

/* Universal Compatibility Section */
.universal-compatibility-section {
    background: url('../images/universal-compatibility-bg.png') no-repeat center center;
    background-size: cover;
    padding: 4rem 0;
}

.compatibility-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(242, 169, 0, 0.15);
    color: #F2A900;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compatibility-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
}

.compatibility-heading .text-yellow-compatibility {
    color: #F2A900;
}

.compatibility-intro {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #6B7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Left Column: Feature Cards */
.compatibility-feature-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.feature-check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.check-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-content {
    flex: 1;
    font-size: clamp(0.9375rem, 1.3vw, 1rem);
    color: #0F1729;
    line-height: 1.6;
}

.feature-title {
    color: #0F1729;
    font-weight: 600;
}

.feature-description {
    color: #6B7280;
}

/* Right Column: Methods Box */
.compatibility-methods-box {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.methods-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.methods-header-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.methods-title {
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: #0F1729;
    margin: 0;
}

.method-card {
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    min-height: 60px;
}

.method-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.method-label {
    font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
    font-weight: 400;
    color: #0F1729;
    line-height: 1.4;
}

/* Right Column: Formats Box */
.compatibility-formats-box {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.formats-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.formats-header-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.formats-title {
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: #0F1729;
    margin: 0;
}

.format-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #E7B0081A;
    border: 1px solid #E7B00833;
    border-radius: 50px;
    font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
    font-weight: 400;
    color: #E7B008;
}

/* Bottom Disclaimer Banner */
.compatibility-disclaimer {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
}

.disclaimer-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.disclaimer-text {
    font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
    color: #6B7280;
    line-height: 1.6;
}

/* Responsive Adjustments for Universal Compatibility */
/* Metric Cards Responsive Breakpoints */
@media (min-width: 992px) and (max-width: 1024px) {
    .metric-card {
        padding: 0.875rem;
        min-height: 130px;
    }
    
    .metric-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.625rem;
    }
    
    .metric-value {
        font-size: clamp(0.7rem, 1vw, 1rem);
        margin-bottom: 0.2rem;
    }
    
    .metric-label {
        font-size: clamp(0.6875rem, 0.9vw, 0.75rem);
    }
}

@media (min-width: 1025px) and (max-width: 1199.98px) {
    .metric-card {
        padding: 0.9375rem;
        min-height: 135px;
    }
    
    .metric-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0.6875rem;
    }
    
    .metric-value {
        font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
        margin-bottom: 0.225rem;
    }
    
    .metric-label {
        font-size: clamp(0.71875rem, 0.95vw, 0.78125rem);
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .metric-card {
        padding: 1rem;
        min-height: 140px;
    }
    
    .metric-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.75rem;
    }
    
    .metric-value {
        font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
        margin-bottom: 0.25rem;
    }
    
    .metric-label {
        font-size: clamp(0.75rem, 1vw, 0.8125rem);
    }
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
    .metric-card {
        padding: 1.125rem;
        min-height: 145px;
    }
    
    .metric-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.875rem;
    }
    
    .metric-value {
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        margin-bottom: 0.3rem;
    }
    
    .metric-label {
        font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
    }
}
@media (max-width: 991.98px) {
    .universal-compatibility-section {
        padding: 3rem 0;
    }

    .compatibility-methods-box,
    .compatibility-formats-box {
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .universal-compatibility-section {
        padding: 2.5rem 0;
    }

    .compatibility-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }

    .compatibility-feature-card {
        padding: 1rem;
    }

    .feature-check-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-right: 0.875rem;
    }

    .check-icon {
        width: 20px;
        height: 20px;
    }

    .compatibility-methods-box,
    .compatibility-formats-box {
        padding: 1.25rem;
    }

    .method-card {
        padding: 0.75rem;
        min-height: 55px;
    }

    .method-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .compatibility-disclaimer {
        padding: 1rem 1.25rem;
    }

    .disclaimer-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    /* Stack method cards vertically on very small screens */
    .compatibility-methods-box .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .compatibility-intro{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
    .feature-description{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
}

/* Procurement & IT Ready Section */
.procurement-it-section {
    background: white;
    padding: 4rem 0;
}

/* Left Column: System Diagram */
.system-diagram-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

/* Source Systems Box */
.source-systems-box {
    /* background: #F8F9FA;
    border: 1px solid #E5E7EB; */
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Container for centering the badge */
.system-diagram-card > div:has(.secure-access-badge) {
    display: flex;
    justify-content: center;
}

.unmodified-label {
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    color: #6B728099;
    font-weight: 500;
}

.source-systems-header {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    color: #6B7280;
    margin-bottom: 1rem;
    display: flex;
  justify-content: space-between;
  align-items: center;
}

.source-systems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.source-system-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.source-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.source-label {
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    font-weight: 500;
    color: #6B7280;
}

/* Secure Read-Only Access Badge */
.secure-access-badge {
    background: #E7B0081A;
    color: #E7B008;
    border: 1px solid #E7B0084D;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    margin: 0 auto 2rem auto;
    width: fit-content;
    /* box-shadow: 0px 2px 8px rgba(231, 176, 8, 0.3); */
}

.padlock-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Flow Arrow */
.flow-arrow {
    display: flex;
    justify-content: center;
    margin: 0rem 0 1rem 0;
}

.flow-arrow svg {
    width: 24px;
    height: 24px;
}

/* APEX Analytics Layer Box */
.apex-layer-box {
    background: linear-gradient(180deg, rgba(242, 169, 0, 0.1) 0%, rgba(242, 169, 0, 0.05) 100%);
    border: 2px solid #E7B0084D;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.apex-layer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.apex-title {
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: #0F1729;
}

.apex-check-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.apex-steps {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.apex-step {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: clamp(0.4rem, 0.6vw, 0.9375rem);
    font-weight: 400;
    color: #0F1729;
}

/* Implementation Risk */
.implementation-risk {
    text-align: center;
    margin-top: 1rem;
    display: flex;
  justify-content: space-between;
  width: 75%;
}

.risk-label {
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    color: #6B7280;
}

.risk-value {
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    font-weight: 700;
    color: #16A249;
    margin-left: 0.5rem;
}

/* Right Column: Text Content */
.procurement-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(242, 169, 0, 0.15);
    color: #F2A900;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.procurement-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0F1729;
    line-height: 1.2;
}

.procurement-heading .text-yellow-procurement {
    color: #F2A900;
}

.procurement-description {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #6B7280;
    line-height: 1.7;
}

/* Procurement Features */
.procurement-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.procurement-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.procurement-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: rgba(242, 169, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.source-system-item-content{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.procurement-feature-content {
    flex: 1;
}

.procurement-feature-title {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.procurement-feature-text {
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

/* Quote Box */
.procurement-quote-box {
    background: #F8F9FA;
    /* border-left: 4px solid #F2A900; */
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
}

.procurement-quote-text {
    font-size: clamp(0.825rem, 1.3vw, 1rem);
    color: #6B7280;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Adjustments for Procurement & IT Ready */
@media (max-width: 991.98px) {
    .procurement-it-section {
        padding: 3rem 0;
    }

    .system-diagram-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

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

@media (max-width: 575.98px) {
    .procurement-it-section {
        padding: 2.5rem 0;
    }

    .procurement-heading {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }

    .system-diagram-card {
        padding: 1.25rem;
    }

    .source-systems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .source-system-item {
        padding: 0.625rem;
    }

    .secure-access-badge {
        padding: 0.625rem 1.25rem;
        font-size: clamp(0.8125rem, 2vw, 0.875rem);
    }

    .apex-layer-box {
        padding: 1.25rem;
    }

    .apex-step {
        padding: 0.25rem 0.5rem;
    }

    .procurement-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .feature-icon-img {
        width: 18px;
        height: 18px;
    }

    .procurement-quote-box {
        padding: 1rem 1.25rem;
    }
    .procurement-description{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
    .procurement-feature-text{
        font-size: clamp(0.75rem, 2vw, 1.125rem);
    }
}