/**
 * CoatNex Theme - Main Styles
 * 
 * This file contains component-specific styles for the theme.
 * Base styles and CSS variables are in style.css
 *
 * @package Barklay_Polymers
 */

/* ==========================================================================
   Enhanced Visual Elements & Decorations
   ========================================================================== */

/* Animated gradient backgrounds */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes subtlePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Glassmorphism utility */
.bp-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient text utility */
.bp-gradient-text {
    background: linear-gradient(135deg, var(--bp-teal) 0%, var(--bp-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Decorative line */
.bp-deco-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bp-teal), var(--bp-orange));
    border-radius: 2px;
}

/* Blob shapes */
.bp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

/* Floating geometric shapes */
.bp-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.bp-shape--circle {
    width: 300px;
    height: 300px;
    border: 2px solid var(--bp-secondary);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 15s ease-in-out infinite;
}

.bp-shape--dots {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--bp-secondary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
}

.bp-shape--line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--bp-secondary), transparent);
    border-radius: 1.5px;
}

/* Highlight box effect */
.bp-highlight {
    position: relative;
}

.bp-highlight::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, var(--bp-teal), var(--bp-orange));
    border-radius: 2px;
}

/* Glow effect on cards */
.bp-glow {
    position: relative;
}

.bp-glow::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--bp-teal), var(--bp-orange));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(15px);
}

.bp-glow:hover::after {
    opacity: 0.4;
}

/* Number highlight for stats/features */
.bp-number-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    color: var(--bp-white);
    font-weight: 700;
    font-size: var(--bp-text-lg);
    border-radius: var(--bp-radius-full);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Icon with background circle */
.bp-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bp-gray-100), var(--bp-gray-50));
    border-radius: var(--bp-radius-full);
    color: var(--bp-secondary);
    transition: all 0.4s ease;
}

.bp-icon-circle:hover {
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    color: var(--bp-white);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

/* Divider with text */
.bp-divider {
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
    margin: var(--bp-space-8) 0;
}

.bp-divider::before,
.bp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bp-gray-300), transparent);
}

.bp-divider__text {
    font-size: var(--bp-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bp-gray-500);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.bp-topbar {
    background: linear-gradient(90deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    padding: var(--bp-space-2) 0;
    font-size: var(--bp-text-sm);
    position: relative;
    overflow: hidden;
}

.bp-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s infinite;
}

.bp-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bp-topbar__phone {
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
    color: var(--bp-white);
    text-decoration: none;
    transition: opacity var(--bp-transition-fast);
}

.bp-topbar__phone:hover {
    opacity: 0.8;
    color: var(--bp-white);
}

.bp-topbar .bp-icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Social Links
   ========================================================================== */
.bp-social {
    display: flex;
    align-items: center;
    gap: var(--bp-space-3);
}

.bp-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--bp-white);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--bp-radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bp-social__link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--bp-radius-full);
}

.bp-social__link:hover {
    color: var(--bp-white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.bp-social__link:hover::before {
    opacity: 1;
}

.bp-social__link .bp-icon {
    position: relative;
    z-index: 1;
}

.bp-social__link .bp-icon {
    width: 16px;
    height: 16px;
}

.bp-social--footer .bp-social__link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

.bp-social--footer .bp-social__link .bp-icon {
    width: 18px;
    height: 18px;
}

.bp-social--small .bp-social__link {
    width: 28px;
    height: 28px;
    background-color: transparent;
}

.bp-social--small .bp-social__link .bp-icon {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.bp-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--bp-space-4) 0;
    position: sticky;
    top: 0px;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bp-space-8);
}

/* Header Search */
.bp-header__search {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: var(--bp-space-4);
}

/* Ivory Search Form Styles */
.bp-header__search .is-search-form {
    margin: 0;
    position: relative;
}

.bp-header__search .is-search-input {
    width: 280px;
    padding: var(--bp-space-2) var(--bp-space-4);
    padding-right: 40px;
    font-size: var(--bp-text-sm);
    font-family: var(--bp-font-primary);
    color: var(--bp-gray-700);
    background-color: var(--bp-gray-50);
    border: 1px solid var(--bp-gray-200);
    border-radius: var(--bp-radius);
    transition: all 0.3s ease;
    outline: none;
}

.bp-header__search .is-search-input:focus {
    background-color: var(--bp-white);
    border-color: var(--bp-primary);
    box-shadow: 0 0 0 3px rgba(0, 173, 167, 0.1);
}

.bp-header__search .is-search-input::placeholder {
    color: var(--bp-gray-400);
}

.bp-header__search .is-search-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: var(--bp-space-2);
    cursor: pointer;
    color: var(--bp-gray-500);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-header__search .is-search-submit:hover {
    color: var(--bp-primary);
}

.bp-header__search .is-search-submit svg {
    width: 18px;
    height: 18px;
}

/* AJAX Search Results Dropdown */
.bp-header__search .is-ajax-search-result {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bp-white);
    border: 1px solid var(--bp-gray-200);
    border-radius: var(--bp-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1001;
    animation: fadeInUp 0.2s ease;
}

.bp-header__search .is-ajax-search-result .is-ajax-search-details {
    padding: var(--bp-space-4);
}

.bp-header__search .is-ajax-search-result .is-ajax-search-link {
    display: flex;
    align-items: flex-start;
    gap: var(--bp-space-3);
    padding: var(--bp-space-3);
    color: var(--bp-gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--bp-gray-100);
    transition: background-color 0.2s ease;
}

.bp-header__search .is-ajax-search-result .is-ajax-search-link:hover {
    background-color: var(--bp-gray-50);
}

.bp-header__search .is-ajax-search-result .is-ajax-search-link:last-child {
    border-bottom: none;
}

.bp-header__search .is-ajax-search-result .is-ajax-search-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--bp-radius);
    overflow: hidden;
    background-color: var(--bp-gray-100);
}

.bp-header__search .is-ajax-search-result .is-ajax-search-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-header__search .is-ajax-search-result .is-ajax-search-content {
    flex: 1;
    min-width: 0;
}

.bp-header__search .is-ajax-search-result .is-ajax-search-title {
    font-size: var(--bp-text-base);
    font-weight: 600;
    color: var(--bp-gray-900);
    margin: 0 0 var(--bp-space-1) 0;
    line-height: 1.4;
}

.bp-header__search .is-ajax-search-result .is-ajax-search-excerpt {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bp-header__search .is-ajax-search-result .is-ajax-search-category {
    display: inline-block;
    padding: 2px 8px;
    font-size: var(--bp-text-xs);
    font-weight: 500;
    color: var(--bp-primary);
    background-color: rgba(0, 173, 167, 0.1);
    border-radius: var(--bp-radius-sm);
    margin-top: var(--bp-space-1);
}

.bp-header__search .is-ajax-search-result .is-ajax-search-more {
    display: block;
    padding: var(--bp-space-3);
    text-align: center;
    font-size: var(--bp-text-sm);
    font-weight: 600;
    color: var(--bp-primary);
    text-decoration: none;
    border-top: 1px solid var(--bp-gray-200);
    transition: background-color 0.2s ease;
}

.bp-header__search .is-ajax-search-result .is-ajax-search-more:hover {
    background-color: var(--bp-gray-50);
}

.bp-header__search .is-ajax-search-result .is-ajax-search-nothing {
    padding: var(--bp-space-6);
    text-align: center;
    color: var(--bp-gray-500);
    font-size: var(--bp-text-sm);
}

/* Logo */
.bp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bp-logo__text {
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-2xl);
    font-weight: 700;
    color: var(--bp-primary);
    letter-spacing: -0.02em;
}

.bp-logo--light .bp-logo__text {
    color: var(--bp-white);
}

/* Navigation */
.bp-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.bp-nav__list {
    display: flex;
    align-items: center;
    gap: var(--bp-space-1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.bp-nav__link {
    display: block;
    padding: var(--bp-space-2) var(--bp-space-4);
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-base);
    font-weight: 500;
    color: var(--bp-gray-700);
    text-decoration: none;
    border-radius: var(--bp-radius);
    transition: all 0.3s ease;
    position: relative;
}

.bp-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-secondary-light));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.bp-nav__link:hover,
.bp-nav__item--active .bp-nav__link {
    color: var(--bp-secondary);
}

.bp-nav__link:hover::after,
.bp-nav__item--active .bp-nav__link::after {
    width: 80%;
}

/* Dropdown Arrow */
.bp-nav__arrow {
    width: 16px;
    height: 16px;
    margin-left: var(--bp-space-1);
    transition: transform var(--bp-transition-fast);
}

.bp-nav__item--has-children:hover .bp-nav__arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.bp-nav__item--has-children {
    position: relative;
}

.bp-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow-xl);
    padding: var(--bp-space-2) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--bp-transition-fast);
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.bp-nav__item--has-children:hover .bp-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bp-nav__dropdown-item {
    margin: 0;
}

.bp-nav__dropdown-item a {
    display: block;
    padding: var(--bp-space-3) var(--bp-space-5);
    color: var(--bp-gray-700);
    text-decoration: none;
    font-size: var(--bp-text-sm);
    font-weight: 500;
    transition: all var(--bp-transition-fast);
}

.bp-nav__dropdown-item a:hover {
    background-color: var(--bp-gray-100);
    color: var(--bp-secondary);
    padding-left: var(--bp-space-6);
}

/* Mobile Toggle */
.bp-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--bp-space-2);
    background: transparent;
    border: none;
    cursor: pointer;
}

.bp-mobile-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bp-primary);
    border-radius: 2px;
    transition: all var(--bp-transition-fast);
}

.bp-mobile-toggle[aria-expanded="true"] .bp-mobile-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bp-mobile-toggle[aria-expanded="true"] .bp-mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

.bp-mobile-toggle[aria-expanded="true"] .bp-mobile-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Search Toggle */
.bp-search-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--bp-space-2);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--bp-primary);
    transition: color 0.3s ease;
}

.bp-search-toggle:hover {
    color: var(--bp-secondary);
}

.bp-search-toggle svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.bp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: var(--bp-space-24) 0;
    overflow: hidden;
}

.bp-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 40%, var(--bp-secondary-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.bp-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 45%);
}

/* Hero floating decorations */
.bp-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--bp-secondary) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.2;
    animation: pulse 6s ease-in-out infinite;
}

.bp-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--bp-accent) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    opacity: 0.15;
    animation: pulse 8s ease-in-out infinite 2s;
}

.bp-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.bp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--bp-space-2);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--bp-space-2) var(--bp-space-4);
    border-radius: var(--bp-radius-full);
    font-size: var(--bp-text-sm);
    font-weight: 600;
    color: var(--bp-white);
    margin-bottom: var(--bp-space-6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.bp-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.bp-hero__title {
    font-size: var(--bp-text-6xl);
    font-weight: 700;
    color: var(--bp-white);
    line-height: 1.1;
    margin-bottom: var(--bp-space-6);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.bp-hero__title span {
    background: linear-gradient(90deg, var(--bp-secondary-light), #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bp-hero__subtitle {
    font-size: var(--bp-text-xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--bp-space-8);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.bp-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* ==========================================================================
   Pain Points Section
   ========================================================================== */
/* Challenge Section Styles */
.bp-section--challenges {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 50%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.bp-section--challenges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(239, 68, 68, 0.02) 10px,
            rgba(239, 68, 68, 0.02) 20px
        );
    pointer-events: none;
}

.bp-section-header--challenge {
    position: relative;
    z-index: 1;
}

.bp-section-header__subtitle--warning {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--bp-white);
    padding: var(--bp-space-2) var(--bp-space-5);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.bp-section-header__subtitle--warning::before {
    content: '';
}

.bp-painpoints-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--bp-space-6);
    margin-bottom: var(--bp-space-12);
    position: relative;
    z-index: 1;
}

.bp-painpoint--challenge {
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
    padding: var(--bp-space-6);
    border-radius: var(--bp-radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(239, 68, 68, 0.15);
}

.bp-painpoint--challenge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #ef4444 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bp-painpoint--challenge::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bp-painpoint--challenge:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.4);
}

.bp-painpoint__badge {
    position: absolute;
    top: var(--bp-space-4);
    right: var(--bp-space-4);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--bp-white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    z-index: 2;
}

.bp-painpoint__icon--warning {
    width: 70px;
    height: 70px;
    margin: var(--bp-space-6) auto var(--bp-space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 50%;
    color: #dc2626;
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid rgba(239, 68, 68, 0.2);
}

.bp-painpoint--challenge:hover .bp-painpoint__icon--warning {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--bp-white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    border-color: #b91c1c;
}

.bp-painpoint__icon--warning svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.bp-painpoint--challenge .bp-painpoint__title {
    font-size: var(--bp-text-lg);
    font-weight: 700;
    color: #dc2626;
    margin-bottom: var(--bp-space-3);
    position: relative;
    z-index: 1;
}

.bp-painpoint--challenge .bp-painpoint__text {
    font-size: var(--bp-text-sm);
    color: #991b1b;
    margin-bottom: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Legacy support for non-challenge pain points */
.bp-painpoint:not(.bp-painpoint--challenge) {
    background-color: var(--bp-white);
    padding: var(--bp-space-6);
    border-radius: var(--bp-radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.bp-painpoint:not(.bp-painpoint--challenge)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bp-teal), var(--bp-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bp-painpoint:not(.bp-painpoint--challenge):hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.bp-painpoint:not(.bp-painpoint--challenge):hover::before {
    transform: scaleX(1);
}

.bp-painpoint__icon:not(.bp-painpoint__icon--warning) {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--bp-space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-gray-100), var(--bp-gray-200));
    border-radius: var(--bp-radius-xl);
    color: var(--bp-secondary);
    transition: all 0.4s ease;
    position: relative;
}

.bp-painpoint:not(.bp-painpoint--challenge):hover .bp-painpoint__icon:not(.bp-painpoint__icon--warning) {
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    color: var(--bp-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.bp-painpoint__icon:not(.bp-painpoint__icon--warning) svg {
    width: 28px;
    height: 28px;
}

.bp-painpoint:not(.bp-painpoint--challenge) .bp-painpoint__title {
    font-size: var(--bp-text-lg);
    font-weight: 600;
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-2);
}

.bp-painpoint:not(.bp-painpoint--challenge) .bp-painpoint__text {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.bp-painpoints-solution {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: var(--bp-space-8) var(--bp-space-10);
    background: linear-gradient(135deg, var(--bp-secondary) 0%, var(--bp-primary) 100%);
    border-radius: var(--bp-radius-2xl);
    color: var(--bp-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.3);
}

.bp-painpoints-solution::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: float 10s ease-in-out infinite;
}

.bp-painpoints-solution::after {
    content: '30%';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6rem;
    font-weight: 800;
    opacity: 0.1;
    font-family: var(--bp-font-primary);
}

.bp-painpoints-solution p {
    font-size: var(--bp-text-xl);
    margin-bottom: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.bp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-6);
}

.bp-services-grid .bp-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bp-gray-200);
}

.bp-services-grid .bp-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bp-teal), var(--bp-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bp-services-grid .bp-card:hover::before {
    transform: scaleX(1);
}

.bp-services-grid .bp-card:hover {
    border-color: var(--bp-teal-light);
}

.bp-services-grid .bp-card__icon {
    position: relative;
    overflow: hidden;
}

.bp-services-grid .bp-card__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bp-services-grid .bp-card:hover .bp-card__icon::after {
    opacity: 1;
}

.bp-services-grid .bp-card__icon svg {
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   Capabilities Section
   ========================================================================== */
/* ==========================================================================
   Capabilities Section - Enhanced UI
   ========================================================================== */
.bp-capabilities {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 50%, var(--bp-secondary-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
    padding: var(--bp-space-20) 0;
    min-height: 600px;
}

.bp-capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.bp-capabilities::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

/* Statistics Bar */
.bp-capabilities__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bp-space-6);
    margin-bottom: var(--bp-space-16);
    position: relative;
    z-index: 2;
}

.bp-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--bp-radius-xl);
    padding: var(--bp-space-6);
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bp-stat[data-animate] {
    opacity: 0;
    transform: translateY(30px);
}

.bp-stat.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bp-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bp-stat__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bp-stat:hover .bp-stat__icon {
    transform: rotate(5deg) scale(1.1);
}

.bp-stat__icon svg {
    width: 24px;
    height: 24px;
    color: var(--bp-white);
}

.bp-stat__content {
    flex: 1;
}

.bp-stat__number {
    font-size: var(--bp-text-3xl);
    font-weight: 700;
    color: var(--bp-white);
    line-height: 1;
    margin-bottom: var(--bp-space-1);
}

.bp-stat__number::after {
    content: '+';
    font-size: var(--bp-text-xl);
    opacity: 0.7;
}

.bp-stat__label {
    font-size: var(--bp-text-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Main Grid */
.bp-capabilities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.bp-capabilities__content {
    color: var(--bp-white);
}

/* Header with Decorative Line */
.bp-capabilities__header {
    margin-bottom: var(--bp-space-10);
}

.bp-capabilities__header[data-animate] {
    opacity: 0;
    transform: translateY(20px);
}

.bp-capabilities__header.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bp-section-header__subtitle--light {
    color: var(--bp-secondary-light);
    display: block;
    margin-bottom: var(--bp-space-3);
}

.bp-capabilities__header .bp-deco-line {
    margin: var(--bp-space-4) 0;
    animation: expandWidth 1s ease-out 0.3s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 60px; }
}

.bp-capabilities__title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
    line-height: 1.2;
}

.bp-capabilities__desc {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Capability Cards */
.bp-capabilities__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-4);
}

.bp-capability-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--bp-radius-lg);
    padding: var(--bp-space-5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bp-capability-card[data-animate] {
    opacity: 0;
    transform: translateY(30px);
}

.bp-capability-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bp-capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bp-secondary-light), var(--bp-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bp-capability-card:hover::before {
    transform: scaleX(1);
}

.bp-capability-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bp-capability-card__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border-radius: var(--bp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--bp-space-3);
    transition: all 0.3s ease;
}

.bp-capability-card:hover .bp-capability-card__icon {
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    transform: scale(1.1) rotate(5deg);
}

.bp-capability-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--bp-white);
    transition: transform 0.3s ease;
}

.bp-capability-card:hover .bp-capability-card__icon svg {
    transform: scale(1.1);
}

.bp-capability-card__content {
    flex: 1;
}

.bp-capability-card__title {
    font-size: var(--bp-text-base);
    font-weight: 600;
    color: var(--bp-white);
    margin-bottom: var(--bp-space-2);
    line-height: 1.4;
}

.bp-capability-card__desc {
    font-size: var(--bp-text-sm);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: var(--bp-space-3);
}

/* Progress Bar */
.bp-capability-card__bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-top: var(--bp-space-3);
}

.bp-capability-card__progress {
    height: 100%;
    background: linear-gradient(90deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bp-capability-card__progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: shimmer 2s infinite;
}

.bp-capability-card.is-visible .bp-capability-card__progress {
    width: attr(data-progress);
}

/* Right Side Visual */
.bp-capabilities__image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bp-capabilities__visual {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-capabilities__visual[data-animate] {
    opacity: 0;
    transform: translateX(50px);
}

.bp-capabilities__visual.is-visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3D Molecule Animation */
.bp-molecule {
    width: 300px;
    height: 300px;
    position: relative;
    animation: rotate3d 20s linear infinite;
    transform-style: preserve-3d;
}

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.bp-molecule__atom {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(52, 152, 219, 0.7));
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: atomPulse 3s ease-in-out infinite;
}

@keyframes atomPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.bp-molecule__atom--1 { top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.bp-molecule__atom--2 { top: 10%; left: 30%; animation-delay: 0.5s; }
.bp-molecule__atom--3 { top: 10%; right: 30%; animation-delay: 1s; }
.bp-molecule__atom--4 { bottom: 10%; left: 20%; animation-delay: 1.5s; }
.bp-molecule__atom--5 { bottom: 10%; right: 20%; animation-delay: 2s; }

.bp-molecule__bond {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(52, 152, 219, 0.5));
    height: 2px;
    transform-origin: left center;
}

.bp-molecule__bond--1 { 
    width: 120px; 
    top: 35%; 
    left: 50%; 
    transform: rotate(-45deg);
}

.bp-molecule__bond--2 { 
    width: 120px; 
    top: 35%; 
    left: 50%; 
    transform: rotate(45deg);
}

.bp-molecule__bond--3 { 
    width: 140px; 
    bottom: 30%; 
    left: 45%; 
    transform: rotate(-35deg);
}

.bp-molecule__bond--4 { 
    width: 140px; 
    bottom: 30%; 
    left: 45%; 
    transform: rotate(35deg);
}

/* Gradient Sphere with Particles */
.bp-sphere {
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-sphere__gradient {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 35% 35%,
        rgba(52, 152, 219, 0.9),
        rgba(41, 128, 185, 0.8) 30%,
        rgba(52, 152, 219, 0.6) 60%,
        rgba(255, 255, 255, 0.2)
    );
    box-shadow: 
        0 0 60px rgba(52, 152, 219, 0.5),
        inset -20px -20px 40px rgba(0, 0, 0, 0.2),
        inset 20px 20px 40px rgba(255, 255, 255, 0.3);
    animation: spherePulse 4s ease-in-out infinite, sphereRotate 20s linear infinite;
    position: relative;
    overflow: hidden;
}

.bp-sphere__gradient::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

.bp-sphere__gradient::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2), transparent 60%);
    border-radius: 50%;
    filter: blur(15px);
}

@keyframes spherePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 60px rgba(52, 152, 219, 0.5),
            inset -20px -20px 40px rgba(0, 0, 0, 0.2),
            inset 20px 20px 40px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 80px rgba(52, 152, 219, 0.7),
            inset -20px -20px 40px rgba(0, 0, 0, 0.15),
            inset 20px 20px 40px rgba(255, 255, 255, 0.4);
    }
}

@keyframes sphereRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Particles orbiting the sphere */
.bp-sphere__particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(52, 152, 219, 0.6));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.8);
    animation: particleOrbit 12s linear infinite;
}

@keyframes particleOrbit {
    0% {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(180px) rotate(-360deg);
        opacity: 0.4;
    }
}

.bp-sphere__particle--1 { animation-duration: 10s; animation-delay: 0s; }
.bp-sphere__particle--2 { animation-duration: 12s; animation-delay: -1.5s; }
.bp-sphere__particle--3 { animation-duration: 14s; animation-delay: -3s; }
.bp-sphere__particle--4 { animation-duration: 11s; animation-delay: -4.5s; }
.bp-sphere__particle--5 { animation-duration: 13s; animation-delay: -6s; }
.bp-sphere__particle--6 { animation-duration: 15s; animation-delay: -7.5s; }
.bp-sphere__particle--7 { animation-duration: 9s; animation-delay: -9s; }
.bp-sphere__particle--8 { animation-duration: 16s; animation-delay: -10.5s; }


/* Data Points */
.bp-data-point {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--bp-radius-lg);
    padding: var(--bp-space-3) var(--bp-space-4);
    text-align: center;
    animation: floatData 4s ease-in-out infinite;
}

@keyframes floatData {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.bp-data-point--1 { 
    top: 10%; 
    right: 10%; 
    animation-delay: 0s;
}

.bp-data-point--2 { 
    top: 50%; 
    right: 5%; 
    animation-delay: 1.3s;
}

.bp-data-point--3 { 
    bottom: 15%; 
    right: 15%; 
    animation-delay: 2.6s;
}

.bp-data-point__value {
    font-size: var(--bp-text-xl);
    font-weight: 700;
    color: var(--bp-white);
    line-height: 1;
    margin-bottom: var(--bp-space-1);
}

.bp-data-point__label {
    font-size: var(--bp-text-xs);
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.bp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-6);
}

.bp-testimonial {
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    padding: var(--bp-space-8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--bp-gray-200);
}

.bp-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--bp-secondary);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.bp-testimonial:hover {
    box-shadow: 0 25px 50px rgba(30, 58, 95, 0.12);
    transform: translateY(-8px);
    border-color: var(--bp-secondary-light);
}

.bp-testimonial__content {
    flex-grow: 1;
}

.bp-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--bp-space-4);
    color: #f59e0b;
}

.bp-testimonial__stars svg {
    width: 18px;
    height: 18px;
}

.bp-testimonial__text {
    font-size: var(--bp-text-base);
    color: var(--bp-gray-600);
    line-height: 1.7;
    margin-bottom: var(--bp-space-6);
    font-style: italic;
}

.bp-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--bp-space-3);
    padding-top: var(--bp-space-4);
    border-top: 1px solid var(--bp-gray-200);
}

.bp-testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--bp-radius-full);
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    color: var(--bp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--bp-text-base);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
}

.bp-testimonial__avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--bp-radius-full);
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-accent));
    z-index: -1;
    opacity: 0.3;
}

.bp-testimonial__name {
    font-size: var(--bp-text-base);
    font-weight: 600;
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-1);
}

.bp-testimonial__role {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-500);
    margin-bottom: 0;
}

/* Testimonials Carousel */
.bp-testimonials-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.bp-testimonials-carousel__wrapper {
    overflow: hidden;
    position: relative;
    border-radius: var(--bp-radius-xl);
}

.bp-testimonials-carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.bp-testimonials-carousel .bp-testimonial {
    flex: 0 0 calc(33.333% - 20px);
    margin-right: var(--bp-space-6);
    min-height: 380px;
}

.bp-testimonials-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--bp-radius-full);
    background-color: var(--bp-white);
    border: 2px solid var(--bp-secondary);
    color: var(--bp-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bp-testimonials-carousel__nav:hover {
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(52, 152, 219, 0.3);
}

.bp-testimonials-carousel__nav:active {
    transform: translateY(-50%) scale(0.95);
}

.bp-testimonials-carousel__nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.bp-testimonials-carousel__nav--prev {
    left: 0;
}

.bp-testimonials-carousel__nav--next {
    right: 0;
}

.bp-testimonials-carousel__dots {
    display: flex;
    justify-content: center;
    gap: var(--bp-space-2);
    margin-top: var(--bp-space-8);
}

.bp-testimonials-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: var(--bp-radius-full);
    background-color: var(--bp-gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.bp-testimonials-carousel__dot:hover {
    background-color: var(--bp-secondary-light);
    transform: scale(1.2);
}

.bp-testimonials-carousel__dot.active {
    background-color: var(--bp-secondary);
    width: 32px;
    border-radius: 6px;
}

/* ==========================================================================
   Commitment Banner
   ========================================================================== */
.bp-commitment {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: var(--bp-space-16) 0;
    position: relative;
    overflow: hidden;
}

.bp-commitment::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.bp-commitment::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    pointer-events: none;
}

.bp-commitment__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: var(--bp-space-8);
    flex-wrap: wrap;
}

.bp-commitment__title {
    font-size: var(--bp-text-2xl);
    color: var(--bp-white);
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.bp-commitment__list {
    display: flex;
    gap: var(--bp-space-8);
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.bp-commitment__list li {
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
    color: var(--bp-white);
    font-weight: 500;
}

.bp-commitment__list li svg {
    width: 20px;
    height: 20px;
    color: var(--bp-white);
}

/* ==========================================================================
   Clients Section
   ========================================================================== */
.bp-clients__wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

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

.bp-clients__wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bp-gray-50), transparent);
}

.bp-clients__wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bp-gray-50), transparent);
}

.bp-clients__grid {
    display: flex;
    gap: var(--bp-space-6);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.bp-clients__grid:hover {
    animation-play-state: paused;
}

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

.bp-clients__logo {
    aspect-ratio: 16/9;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bp-white);
    border: 1px solid var(--bp-gray-200);
    border-radius: var(--bp-radius-xl);
    padding: var(--bp-space-6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.bp-clients__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.bp-clients__logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.bp-clients__logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bp-clients__logo:hover {
    border-color: var(--bp-secondary-light);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
    transform: translateY(-5px);
}

.bp-clients__logo:hover::before {
    opacity: 1;
}

.bp-clients__logo span {
    font-weight: 600;
    color: var(--bp-gray-400);
    font-size: var(--bp-text-sm);
}

/* ==========================================================================
   Filter Sidebar
   ========================================================================== */
.bp-filter-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--bp-space-6);
}

.bp-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--bp-space-2);
    padding: var(--bp-space-3) var(--bp-space-5);
    background-color: var(--bp-primary);
    color: var(--bp-white);
    border: none;
    border-radius: var(--bp-radius-lg);
    font-size: var(--bp-text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bp-filter-btn svg {
    width: 20px;
    height: 20px;
}

.bp-filter-btn:hover {
    background-color: var(--bp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.bp-section-header--with-filter {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--bp-space-6);
}

.bp-section-header__text {
    flex: 1;
}

.bp-filter-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--bp-white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.bp-filter-sidebar.active {
    right: 0;
}

.bp-filter-sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--bp-space-6);
    border-bottom: 1px solid var(--bp-gray-200);
    position: sticky;
    top: 0;
    background-color: var(--bp-white);
    z-index: 10;
}

.bp-filter-sidebar__header h3 {
    margin: 0;
    font-size: var(--bp-text-xl);
    font-weight: 700;
    color: var(--bp-primary);
}

.bp-filter-sidebar__close {
    background: none;
    border: none;
    padding: var(--bp-space-2);
    cursor: pointer;
    color: var(--bp-gray-600);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-filter-sidebar__close svg {
    width: 24px;
    height: 24px;
}

.bp-filter-sidebar__close:hover {
    color: var(--bp-primary);
}

.bp-filter-sidebar__content {
    padding: var(--bp-space-6);
}

.bp-filter-group {
    margin-bottom: var(--bp-space-6);
}

.bp-filter-label {
    display: block;
    margin-bottom: var(--bp-space-2);
    font-weight: 600;
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bp-filter-select {
    width: 100%;
    padding: var(--bp-space-3) var(--bp-space-4);
    border: 2px solid var(--bp-gray-300);
    border-radius: var(--bp-radius-lg);
    font-size: var(--bp-text-base);
    color: var(--bp-gray-800);
    background-color: var(--bp-white);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--bp-space-3) center;
    background-size: 20px;
    padding-right: var(--bp-space-10);
}

.bp-filter-select:hover {
    border-color: var(--bp-primary-light);
}

.bp-filter-select:focus {
    outline: none;
    border-color: var(--bp-primary);
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

.bp-filter-actions {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-3);
    margin-top: var(--bp-space-8);
    padding-top: var(--bp-space-6);
    border-top: 1px solid var(--bp-gray-200);
}

.bp-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bp-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.bp-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.bp-faq__item {
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    margin-bottom: var(--bp-space-4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid var(--bp-gray-200);
    transition: all 0.3s ease;
}

.bp-faq__item:hover {
    border-color: var(--bp-secondary-light);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.1);
}

.bp-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bp-space-4);
    padding: var(--bp-space-6);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-lg);
    font-weight: 600;
    color: var(--bp-primary);
    transition: all 0.3s ease;
    position: relative;
}

.bp-faq__question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--bp-teal), var(--bp-orange));
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.bp-faq__item:hover .bp-faq__question::before,
.bp-faq__question[aria-expanded="true"]::before {
    height: 60%;
}

.bp-faq__question:hover {
    background-color: rgba(20, 184, 166, 0.03);
}

.bp-faq__question svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    padding: 4px;
    color: var(--bp-secondary);
    background: rgba(52, 152, 219, 0.1);
    border-radius: var(--bp-radius-full);
    transition: all 0.3s ease;
}

.bp-faq__question[aria-expanded="true"] svg {
    transform: rotate(180deg);
    background: var(--bp-secondary);
    color: var(--bp-white);
}

.bp-faq__answer {
    display: none;
    padding: 0 var(--bp-space-6) var(--bp-space-6);
}

.bp-faq__answer.active {
    display: block;
}

.bp-faq__answer p {
    color: var(--bp-gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   Blog Cards
   ========================================================================== */
.bp-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-6);
}

.bp-blog-card {
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.bp-blog-card:hover {
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.12);
    transform: translateY(-10px);
    border-color: var(--bp-secondary-light);
}

.bp-blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.bp-blog-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 95, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bp-blog-card:hover .bp-blog-card__image::after {
    opacity: 1;
}

.bp-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bp-blog-card:hover .bp-blog-card__image img {
    transform: scale(1.1);
}

.bp-blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-gray-100), var(--bp-gray-200));
    color: var(--bp-gray-400);
}

.bp-blog-card__placeholder svg {
    width: 48px;
    height: 48px;
}

.bp-blog-card__content {
    padding: var(--bp-space-6);
}

.bp-blog-card__meta {
    display: flex;
    align-items: center;
    gap: var(--bp-space-3);
    margin-bottom: var(--bp-space-3);
}

.bp-blog-card__category {
    display: inline-block;
    padding: var(--bp-space-1) var(--bp-space-3);
    background-color: var(--bp-secondary-light);
    color: var(--bp-white);
    font-size: var(--bp-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--bp-radius);
    text-decoration: none;
}

.bp-blog-card__date,
.bp-blog-card__type {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-500);
}

.bp-blog-card__title {
    font-size: var(--bp-text-xl);
    font-weight: 600;
    margin-bottom: var(--bp-space-3);
    line-height: 1.4;
}

.bp-blog-card__title a {
    color: var(--bp-primary);
    text-decoration: none;
    transition: color var(--bp-transition-fast);
}

.bp-blog-card__title a:hover {
    color: var(--bp-secondary);
}

.bp-blog-card__excerpt {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.7;
    margin-bottom: var(--bp-space-4);
}

.bp-blog-card__author {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-500);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.bp-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--bp-space-16);
    align-items: start;
}

.bp-contact__title {
    font-size: var(--bp-text-4xl);
    margin-bottom: var(--bp-space-4);
}

.bp-contact__text {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-600);
    line-height: 1.7;
    margin-bottom: var(--bp-space-8);
}

.bp-contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-4);
}

.bp-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--bp-space-4);
    color: var(--bp-gray-700);
    padding: var(--bp-space-4);
    background: var(--bp-gray-50);
    border-radius: var(--bp-radius-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.bp-contact__detail:hover {
    background: var(--bp-white);
    border-color: var(--bp-secondary-light);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}

.bp-contact__detail svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--bp-white);
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-dark));
    padding: 8px;
    border-radius: var(--bp-radius);
    box-sizing: content-box;
}

.bp-contact__form-wrapper {
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    padding: var(--bp-space-10);
    box-shadow: var(--bp-shadow-lg);
}

/* Contact Form */
.bp-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-6);
    margin-bottom: var(--bp-space-6);
}

.bp-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-2);
}

.bp-contact-form__field--full {
    margin-bottom: var(--bp-space-6);
}

.bp-contact-form__field label {
    font-size: var(--bp-text-sm);
    font-weight: 500;
    color: var(--bp-gray-700);
}

.bp-contact-form__field label .required {
    color: var(--bp-accent);
}

.bp-contact-form__field input,
.bp-contact-form__field textarea {
    padding: var(--bp-space-4);
    border: 2px solid var(--bp-gray-200);
    border-radius: var(--bp-radius-lg);
    font-size: var(--bp-text-base);
    transition: all 0.3s ease;
    background: var(--bp-white);
}

.bp-contact-form__field input:hover,
.bp-contact-form__field textarea:hover {
    border-color: var(--bp-gray-300);
}

.bp-contact-form__field input:focus,
.bp-contact-form__field textarea:focus {
    outline: none;
    border-color: var(--bp-secondary);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.12);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02), transparent);
}

.bp-contact-form__field input::placeholder,
.bp-contact-form__field textarea::placeholder {
    color: var(--bp-gray-400);
}

.bp-contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.bp-contact-form__submit {
    margin-top: var(--bp-space-4);
}

.bp-contact-form__submit .bp-btn {
    width: 100%;
}

.bp-contact-form__submit .bp-btn svg {
    width: 18px;
    height: 18px;
}

.bp-contact-form__message {
    margin-top: var(--bp-space-4);
    padding: var(--bp-space-3) var(--bp-space-4);
    border-radius: var(--bp-radius);
    font-size: var(--bp-text-sm);
    display: none;
}

.bp-contact-form__message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bp-contact-form__message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   Footer
   ========================================================================== */
/* ==========================================================================
   Modern Footer Styles
   ========================================================================== */

.bp-footer {
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f1f38 100%);
    color: var(--bp-white);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.bp-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bp-footer__bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.bp-footer__bg-shape--1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.bp-footer__bg-shape--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    animation-delay: 5s;
}

.bp-footer__bg-shape--3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(155, 89, 182, 0.08) 0%, transparent 70%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Newsletter CTA Section */
.bp-footer__cta {
    position: relative;
    z-index: 1;
    padding: var(--bp-space-16) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-footer__cta-card {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--bp-space-10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bp-space-8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.bp-footer__cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.2);
}

.bp-footer__cta-content {
    display: flex;
    align-items: center;
    gap: var(--bp-space-6);
    flex: 1;
}

.bp-footer__cta-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bp-secondary) 0%, var(--bp-secondary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-white);
}

.bp-footer__cta-icon svg {
    width: 30px;
    height: 30px;
}

.bp-footer__cta-text h3 {
    font-size: var(--bp-text-2xl);
    font-weight: 700;
    color: var(--bp-white);
    margin: 0 0 var(--bp-space-2) 0;
}

.bp-footer__cta-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: var(--bp-text-base);
}

.bp-footer__cta-action {
    flex-shrink: 0;
}

.bp-footer__newsletter {
    display: flex;
    gap: var(--bp-space-3);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--bp-space-2);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bp-footer__newsletter input {
    background: transparent;
    border: none;
    padding: var(--bp-space-3) var(--bp-space-6);
    color: var(--bp-white);
    font-size: var(--bp-text-base);
    outline: none;
    min-width: 300px;
}

.bp-footer__newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.bp-footer__newsletter .bp-btn--gradient {
    background: linear-gradient(135deg, var(--bp-secondary) 0%, var(--bp-secondary-light) 100%);
    color: var(--bp-white);
    border: none;
    padding: var(--bp-space-3) var(--bp-space-8);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bp-footer__newsletter .bp-btn--gradient svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.bp-footer__newsletter .bp-btn--gradient:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

.bp-footer__newsletter .bp-btn--gradient:hover svg {
    transform: translateX(5px);
}

/* Main Footer Content */
.bp-footer__main {
    padding: var(--bp-space-20) 0 var(--bp-space-16) 0;
    position: relative;
    z-index: 1;
}

.bp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--bp-space-12);
}

.bp-footer__col--brand {
    padding-right: var(--bp-space-8);
}

.bp-footer__brand {
    margin-bottom: var(--bp-space-6);
}

.bp-footer__brand img,
.bp-footer__brand .bp-logo {
    max-width: 180px;
    height: auto;
}

.bp-footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--bp-space-8);
    font-size: var(--bp-text-base);
}

/* Social Links */
.bp-footer__social {
    margin-top: var(--bp-space-8);
}

.bp-footer__social-title {
    font-size: var(--bp-text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--bp-space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bp-social-links {
    display: flex;
    gap: var(--bp-space-3);
}

.bp-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-white);
    transition: all 0.3s ease;
}

.bp-social-link svg {
    width: 20px;
    height: 20px;
}

.bp-social-link:hover {
    background: linear-gradient(135deg, var(--bp-secondary) 0%, var(--bp-secondary-light) 100%);
    border-color: var(--bp-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Footer Headings */
.bp-footer__heading {
    font-size: var(--bp-text-lg);
    font-weight: 700;
    color: var(--bp-white);
    margin-bottom: var(--bp-space-6);
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
}

.bp-footer__heading-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: var(--bp-secondary-light);
}

.bp-footer__heading-icon svg {
    width: 100%;
    height: 100%;
}

/* Footer Menu */
.bp-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-footer__menu li {
    margin-bottom: var(--bp-space-3);
}

.bp-footer__menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: var(--bp-space-5);
}

.bp-footer__menu a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 12px;
    height: 2px;
    background: var(--bp-secondary-light);
    border-radius: 2px;
    transition: all 0.3s ease;
    opacity: 0;
}

.bp-footer__menu a:hover {
    color: var(--bp-white);
    padding-left: var(--bp-space-6);
}

.bp-footer__menu a:hover::before {
    opacity: 1;
    width: 16px;
}

/* Contact Items */
.bp-footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-4);
}

.bp-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--bp-space-3);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: var(--bp-space-3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.bp-footer__contact-item:hover {
    color: var(--bp-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.bp-footer__contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--bp-secondary-light);
    margin-top: 2px;
}

.bp-footer__contact-icon svg {
    width: 100%;
    height: 100%;
}

/* Footer Bottom Bar */
.bp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--bp-space-8) 0;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
}

.bp-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--bp-space-4);
}

.bp-footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--bp-text-sm);
    margin: 0;
}

.bp-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
}

.bp-footer__bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: var(--bp-text-sm);
    transition: color 0.3s ease;
}

.bp-footer__bottom-links a:hover {
    color: var(--bp-white);
}

.bp-footer__divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bp-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bp-footer__col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: var(--bp-space-8);
    }

    .bp-footer__cta-card {
        flex-direction: column;
        text-align: center;
    }

    .bp-footer__cta-content {
        flex-direction: column;
        text-align: center;
    }

    .bp-footer__newsletter input {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .bp-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--bp-space-8);
    }

    .bp-footer__cta {
        padding: var(--bp-space-10) 0;
    }

    .bp-footer__cta-card {
        padding: var(--bp-space-8);
    }

    .bp-footer__newsletter {
        flex-direction: column;
        border-radius: 15px;
    }

    .bp-footer__newsletter input {
        min-width: auto;
        width: 100%;
    }

    .bp-footer__newsletter .bp-btn--gradient {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
    }

    .bp-footer__main {
        padding: var(--bp-space-16) 0 var(--bp-space-12) 0;
    }

    .bp-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--bp-space-3);
    }

    .bp-social-links {
        justify-content: center;
    }
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */
.bp-single__header {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 100%);
    padding: var(--bp-space-20) 0;
    color: var(--bp-white);
}

.bp-container--narrow {
    max-width: 800px;
}

.bp-single__meta {
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
    margin-bottom: var(--bp-space-4);
}

.bp-single__category {
    display: inline-block;
    padding: var(--bp-space-1) var(--bp-space-3);
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    font-size: var(--bp-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--bp-radius);
    text-decoration: none;
}

.bp-single__date {
    font-size: var(--bp-text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.bp-single__title {
    font-size: var(--bp-text-5xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-6);
    line-height: 1.2;
}

.bp-single__author-info {
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
}

.bp-single__avatar {
    border-radius: var(--bp-radius-full);
}

.bp-single__author {
    display: block;
    font-weight: 500;
    color: var(--bp-white);
}

.bp-single__reading-time {
    display: block;
    font-size: var(--bp-text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.bp-single__featured-image {
    margin-top: calc(var(--bp-space-12) * -1);
    margin-bottom: var(--bp-space-12);
}

.bp-single__image {
    border-radius: var(--bp-radius-xl);
    box-shadow: var(--bp-shadow-xl);
}

.bp-single__content {
    padding: var(--bp-space-12) 0;
}

.bp-single__content p {
    font-size: var(--bp-text-lg);
    line-height: 1.8;
    margin-bottom: var(--bp-space-6);
}

.bp-single__content h2,
.bp-single__content h3,
.bp-single__content h4 {
    margin-top: var(--bp-space-10);
    margin-bottom: var(--bp-space-4);
}

.bp-single__content ul,
.bp-single__content ol {
    margin-bottom: var(--bp-space-6);
    padding-left: var(--bp-space-6);
}

.bp-single__content li {
    margin-bottom: var(--bp-space-2);
    line-height: 1.7;
}

.bp-single__content blockquote {
    border-left: 4px solid var(--bp-secondary);
    padding-left: var(--bp-space-6);
    margin: var(--bp-space-8) 0;
    font-style: italic;
    color: var(--bp-gray-600);
}

.bp-single__tags {
    padding: var(--bp-space-8) 0;
    border-top: 1px solid var(--bp-gray-200);
}

.bp-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--bp-space-3);
}

.bp-tags__label {
    font-weight: 600;
    color: var(--bp-gray-700);
}

.bp-tags__tag {
    display: inline-block;
    padding: var(--bp-space-1) var(--bp-space-3);
    background-color: var(--bp-gray-100);
    color: var(--bp-gray-700);
    font-size: var(--bp-text-sm);
    border-radius: var(--bp-radius);
    text-decoration: none;
    transition: all var(--bp-transition-fast);
}

.bp-tags__tag:hover {
    background-color: var(--bp-secondary);
    color: var(--bp-white);
}

.bp-single__author-box {
    padding: var(--bp-space-8) 0;
    border-top: 1px solid var(--bp-gray-200);
}

.bp-author-box {
    display: flex;
    gap: var(--bp-space-6);
    padding: var(--bp-space-6);
    background-color: var(--bp-gray-100);
    border-radius: var(--bp-radius-lg);
}

.bp-author-box__avatar {
    flex-shrink: 0;
    border-radius: var(--bp-radius-full);
}

.bp-author-box__name {
    font-size: var(--bp-text-xl);
    margin-bottom: var(--bp-space-2);
}

.bp-author-box__bio {
    color: var(--bp-gray-600);
    line-height: 1.7;
    margin-bottom: var(--bp-space-3);
}

.bp-author-box__link {
    display: inline-flex;
    align-items: center;
    gap: var(--bp-space-2);
    font-weight: 500;
    color: var(--bp-secondary);
}

.bp-author-box__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--bp-transition-fast);
}

.bp-author-box__link:hover svg {
    transform: translateX(4px);
}

.bp-single__navigation {
    padding: var(--bp-space-8) 0;
    border-top: 1px solid var(--bp-gray-200);
}

.bp-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-6);
}

.bp-post-nav__link {
    display: block;
    padding: var(--bp-space-4);
    background-color: var(--bp-gray-100);
    border-radius: var(--bp-radius-lg);
    text-decoration: none;
    transition: all var(--bp-transition-fast);
}

.bp-post-nav__link:hover {
    background-color: var(--bp-gray-200);
}

.bp-post-nav__link--next {
    text-align: right;
}

.bp-post-nav__label {
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
    font-size: var(--bp-text-sm);
    color: var(--bp-secondary);
    margin-bottom: var(--bp-space-2);
}

.bp-post-nav__link--next .bp-post-nav__label {
    justify-content: flex-end;
}

.bp-post-nav__label svg {
    width: 16px;
    height: 16px;
}

.bp-post-nav__title {
    display: block;
    font-family: var(--bp-font-primary);
    font-weight: 600;
    color: var(--bp-primary);
    line-height: 1.4;
}

/* ==========================================================================
   Archive / Blog List
   ========================================================================== */
.bp-archive__header {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 100%);
    padding: var(--bp-space-16) 0;
    text-align: center;
    color: var(--bp-white);
}

.bp-archive__title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-archive__description {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.bp-pagination {
    margin-top: var(--bp-space-12);
}

.bp-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--bp-space-2);
}

.bp-pagination a,
.bp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: var(--bp-space-2) var(--bp-space-3);
    font-weight: 500;
    border-radius: var(--bp-radius);
    text-decoration: none;
    transition: all var(--bp-transition-fast);
}

.bp-pagination a {
    background-color: var(--bp-white);
    color: var(--bp-gray-700);
    border: 1px solid var(--bp-gray-300);
}

.bp-pagination a:hover {
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    border-color: var(--bp-secondary);
}

.bp-pagination span.current {
    background-color: var(--bp-secondary);
    color: var(--bp-white);
}

.bp-pagination .prev,
.bp-pagination .next {
    gap: var(--bp-space-2);
}

.bp-pagination svg {
    width: 16px;
    height: 16px;
}

.bp-no-posts {
    text-align: center;
    padding: var(--bp-space-16) 0;
}

.bp-no-posts svg {
    width: 80px;
    height: 80px;
    color: var(--bp-gray-300);
    margin-bottom: var(--bp-space-6);
}

.bp-no-posts h2 {
    font-size: var(--bp-text-2xl);
    margin-bottom: var(--bp-space-4);
}

.bp-no-posts p {
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-6);
}

.bp-search-results__count {
    font-weight: 500;
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-8);
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.bp-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--bp-space-20) 0;
}

.bp-404__content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.bp-404__icon {
    margin-bottom: var(--bp-space-6);
}

.bp-404__icon svg {
    width: 100px;
    height: 100px;
    color: var(--bp-gray-300);
}

.bp-404__code {
    display: block;
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-6xl);
    font-weight: 800;
    color: var(--bp-secondary);
    line-height: 1;
    margin-bottom: var(--bp-space-4);
}

.bp-404__title {
    font-size: var(--bp-text-3xl);
    margin-bottom: var(--bp-space-4);
}

.bp-404__text {
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-8);
}

.bp-404__actions {
    display: flex;
    justify-content: center;
    gap: var(--bp-space-4);
    flex-wrap: wrap;
    margin-bottom: var(--bp-space-12);
}

.bp-404__actions .bp-btn svg {
    width: 18px;
    height: 18px;
}

.bp-404__search p {
    color: var(--bp-gray-500);
    margin-bottom: var(--bp-space-4);
}

/* ==========================================================================
   Search Form
   ========================================================================== */
.bp-search-form__inner {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.bp-search-form__input {
    flex-grow: 1;
    padding: var(--bp-space-3) var(--bp-space-4);
    border: 2px solid var(--bp-gray-200);
    border-right: none;
    border-radius: var(--bp-radius) 0 0 var(--bp-radius);
    font-size: var(--bp-text-base);
    transition: border-color var(--bp-transition-fast);
}

.bp-search-form__input:focus {
    outline: none;
    border-color: var(--bp-secondary);
}

.bp-search-form__submit {
    padding: var(--bp-space-3) var(--bp-space-4);
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    border: none;
    border-radius: 0 var(--bp-radius) var(--bp-radius) 0;
    cursor: pointer;
    transition: background-color var(--bp-transition-fast);
}

.bp-search-form__submit:hover {
    background-color: var(--bp-secondary-dark);
}

.bp-search-form__submit svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Page Template
   ========================================================================== */
.bp-page__header {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 100%);
    padding: var(--bp-space-16) 0;
}

.bp-page__title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-white);
    margin-bottom: 0;
}

.bp-page__content {
    padding: var(--bp-space-16) 0;
}

.bp-page__content p {
    font-size: var(--bp-text-lg);
    line-height: 1.8;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .bp-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: var(--bp-space-8);
    }
}

@media (max-width: 1024px) {
    .bp-header__inner {
        gap: var(--bp-space-4);
    }
    
    .bp-hero {
        min-height: 70vh;
    }
    
    .bp-hero__title {
        font-size: var(--bp-text-5xl);
    }
    
    .bp-painpoints-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-capabilities__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-capabilities__grid {
        gap: var(--bp-space-10);
    }
    
    .bp-capabilities__cards {
        grid-template-columns: 1fr;
    }
    
    .bp-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-testimonials__grid .bp-testimonial:last-child {
        grid-column: span 2;
    }

    .bp-testimonials-carousel .bp-testimonial {
        flex: 0 0 calc(50% - var(--bp-space-3));
        margin-right: var(--bp-space-6);
    }
    
    .bp-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-contact__grid {
        grid-template-columns: 1fr;
        gap: var(--bp-space-10);
    }
    
    .bp-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--bp-space-10);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .bp-mobile-toggle {
        display: flex;
    }
    
    .bp-search-toggle {
        display: flex;
    }
    
    /* Header Search Mobile */
    .bp-header__search {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        padding: var(--bp-space-4);
        background: var(--bp-white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 998;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .bp-header__search.active {
        transform: translateY(0);
    }
    
    .bp-header__search .is-search-input {
        width: 100%;
    }
    
    .bp-header__search .is-ajax-search-result {
        max-height: calc(100vh - 200px);
    }
    
    /* Capabilities Responsive */
    .bp-capabilities__stats {
        grid-template-columns: 1fr;
        gap: var(--bp-space-4);
    }
    
    .bp-stat {
        padding: var(--bp-space-4);
    }
    
    .bp-capabilities__grid {
        grid-template-columns: 1fr;
        gap: var(--bp-space-8);
    }
    
    .bp-capabilities__visual {
        height: 350px;
    }
    
    .bp-sphere {
        width: 250px;
        height: 250px;
    }
    
    .bp-sphere__gradient {
        width: 200px;
        height: 200px;
    }
    
    .bp-sphere__particle {
        width: 6px;
        height: 6px;
    }
    
    @keyframes particleOrbit {
        0% {
            transform: rotate(0deg) translateX(130px) rotate(0deg);
            opacity: 0.4;
        }
        50% {
            opacity: 1;
        }
        100% {
            transform: rotate(360deg) translateX(130px) rotate(-360deg);
            opacity: 0.4;
        }
    }
    
    .bp-data-point {
        padding: var(--bp-space-2) var(--bp-space-3);
    }
    
    .bp-data-point__value {
        font-size: var(--bp-text-lg);
    }
    
    /* Filter Sidebar Mobile */
    .bp-filter-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .bp-filter-btn-wrapper {
        justify-content: center;
    }
    
    .bp-filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bp-section-header--with-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bp-filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bp-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background-color: var(--bp-white);
        padding: var(--bp-space-20) var(--bp-space-6);
        transform: translateX(-100%);
        transition: transform var(--bp-transition);
        z-index: 999;
        overflow-y: auto;
        display: block;
    }
    
    .bp-nav.active {
        transform: translateX(0);
    }
    
    .bp-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--bp-space-2);
        background-color: transparent;
    }
    
    .bp-nav__link {
        padding: var(--bp-space-4);
        font-size: var(--bp-text-lg);
    }
    
    /* Mobile Dropdown */
    .bp-nav__item--has-children .bp-nav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .bp-nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bp-gray-100);
        border-radius: var(--bp-radius);
        margin-top: var(--bp-space-2);
        display: none;
    }
    
    .bp-nav__item--has-children.active .bp-nav__dropdown {
        display: block;
    }
    
    .bp-nav__item--has-children.active .bp-nav__arrow {
        transform: rotate(180deg);
    }
    
    .bp-nav__dropdown-item a {
        padding: var(--bp-space-3) var(--bp-space-4);
    }
    
    .bp-header__cta {
        display: none;
    }
    
    /* Hero Mobile */
    .bp-hero {
        min-height: auto;
        padding: var(--bp-space-16) 0;
    }
    
    .bp-hero__title {
        font-size: var(--bp-text-4xl);
    }
    
    .bp-hero__subtitle {
        font-size: var(--bp-text-lg);
    }
    
    .bp-hero__buttons {
        flex-direction: column;
    }
    
    .bp-hero__buttons .bp-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Pain Points Mobile */
    .bp-painpoints-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--bp-space-4);
    }
    
    .bp-painpoint {
        padding: var(--bp-space-4);
    }
    
    /* Services Mobile */
    .bp-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Capabilities Mobile */
    .bp-capabilities__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-capabilities__image {
        order: -1;
    }
    
    /* Testimonials Mobile */
    .bp-testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-testimonials__grid .bp-testimonial:last-child {
        grid-column: auto;
    }

    .bp-testimonials-carousel {
        padding: 0 50px;
    }

    .bp-testimonials-carousel .bp-testimonial {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .bp-testimonials-carousel__nav {
        width: 40px;
        height: 40px;
    }

    .bp-testimonials-carousel__nav svg {
        width: 20px;
        height: 20px;
    }
    
    /* Commitment Mobile */
    .bp-commitment__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .bp-commitment__list {
        justify-content: center;
    }
    
    /* Clients Mobile */

    
    /* Blog Mobile */
    .bp-blog__grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form Mobile */
    .bp-contact-form__row {
        grid-template-columns: 1fr;
    }
    
    .bp-contact__form-wrapper {
        padding: var(--bp-space-6);
    }
    
    /* Footer Mobile */
    .bp-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--bp-space-8);
    }
    
    .bp-footer__bottom-inner {
        flex-direction: column;
        gap: var(--bp-space-4);
        text-align: center;
    }
    
    /* Single Post Mobile */
    .bp-single__title {
        font-size: var(--bp-text-3xl);
    }
    
    .bp-post-nav {
        grid-template-columns: 1fr;
    }
    
    .bp-post-nav__link--next {
        text-align: left;
    }
    
    .bp-post-nav__link--next .bp-post-nav__label {
        justify-content: flex-start;
    }
    
    .bp-author-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bp-topbar__inner {
        flex-direction: column;
        gap: var(--bp-space-2);
    }
    
    .bp-painpoints-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-commitment__list {
        flex-direction: column;
        gap: var(--bp-space-4);
    }
    
    .bp-404__actions {
        flex-direction: column;
    }
    
    .bp-404__actions .bp-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Comments Section
   ========================================================================== */
.bp-comments {
    margin-top: var(--bp-space-12);
    padding-top: var(--bp-space-12);
    border-top: 1px solid var(--bp-gray-200);
}

.bp-comments__title {
    font-size: var(--bp-text-2xl);
    margin-bottom: var(--bp-space-8);
}

.bp-comments__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--bp-space-12);
}

.bp-comment {
    padding: var(--bp-space-6);
    margin-bottom: var(--bp-space-4);
    background-color: var(--bp-gray-100);
    border-radius: var(--bp-radius-lg);
}

.bp-comment .children {
    list-style: none;
    padding-left: var(--bp-space-6);
    margin-top: var(--bp-space-4);
}

.bp-comment .children .bp-comment {
    background-color: var(--bp-white);
    border: 1px solid var(--bp-gray-200);
}

.bp-comment__meta {
    margin-bottom: var(--bp-space-4);
}

.bp-comment__author {
    display: flex;
    align-items: center;
    gap: var(--bp-space-3);
}

.bp-comment__avatar {
    border-radius: var(--bp-radius-full);
}

.bp-comment__author-name {
    font-weight: 600;
    color: var(--bp-primary);
}

.bp-comment__author-name a {
    color: inherit;
    text-decoration: none;
}

.bp-comment__date {
    display: block;
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-500);
}

.bp-comment__awaiting {
    font-style: italic;
    color: var(--bp-gray-600);
    margin-top: var(--bp-space-2);
}

.bp-comment__content {
    margin-bottom: var(--bp-space-4);
    color: var(--bp-gray-700);
    line-height: 1.7;
}

.bp-comment__content p:last-child {
    margin-bottom: 0;
}

.bp-comment__actions {
    display: flex;
    gap: var(--bp-space-4);
}

.bp-comment__actions a {
    font-size: var(--bp-text-sm);
    color: var(--bp-secondary);
    text-decoration: none;
}

.bp-comment__actions a:hover {
    text-decoration: underline;
}

.bp-comments__navigation {
    display: flex;
    justify-content: space-between;
    margin-top: var(--bp-space-6);
}

.bp-comments__navigation a {
    color: var(--bp-secondary);
    text-decoration: none;
}

.bp-comments__closed {
    font-style: italic;
    color: var(--bp-gray-600);
}

.bp-comments__reply-title {
    font-size: var(--bp-text-2xl);
    margin-bottom: var(--bp-space-6);
}

.bp-comment-form label {
    display: block;
    font-weight: 500;
    color: var(--bp-gray-700);
    margin-bottom: var(--bp-space-2);
}

.bp-comment-form label .required {
    color: var(--bp-accent);
}

.bp-comment-form input[type="text"],
.bp-comment-form input[type="email"],
.bp-comment-form input[type="url"],
.bp-comment-form textarea {
    width: 100%;
    padding: var(--bp-space-3) var(--bp-space-4);
    border: 2px solid var(--bp-gray-200);
    border-radius: var(--bp-radius);
    font-size: var(--bp-text-base);
    transition: border-color var(--bp-transition-fast);
}

.bp-comment-form input:focus,
.bp-comment-form textarea:focus {
    outline: none;
    border-color: var(--bp-secondary);
}

.bp-comment-form p {
    margin-bottom: var(--bp-space-4);
}

.bp-comment-form .form-submit {
    margin-top: var(--bp-space-6);
}

/* ==========================================================================
   Sidebar Styles
   ========================================================================== */
.bp-sidebar {
    padding: var(--bp-space-6);
    background-color: var(--bp-gray-100);
    border-radius: var(--bp-radius-lg);
}

.bp-widget {
    margin-bottom: var(--bp-space-8);
}

.bp-widget:last-child {
    margin-bottom: 0;
}

.bp-widget__title {
    font-size: var(--bp-text-lg);
    margin-bottom: var(--bp-space-4);
    padding-bottom: var(--bp-space-3);
    border-bottom: 2px solid var(--bp-secondary);
}

.bp-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-widget li {
    margin-bottom: var(--bp-space-2);
    padding-bottom: var(--bp-space-2);
    border-bottom: 1px solid var(--bp-gray-200);
}

.bp-widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bp-widget a {
    color: var(--bp-gray-700);
    text-decoration: none;
    transition: color var(--bp-transition-fast);
}

.bp-widget a:hover {
    color: var(--bp-secondary);
}

/* ==========================================================================
   Footer Widget Styles
   ========================================================================== */
.bp-footer-widget {
    margin-bottom: var(--bp-space-6);
}

.bp-footer-widget:last-child {
    margin-bottom: 0;
}

.bp-footer-widget__title {
    font-size: var(--bp-text-lg);
    font-weight: 600;
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-footer-widget li {
    margin-bottom: var(--bp-space-2);
}

.bp-footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--bp-transition-fast);
}

.bp-footer-widget a:hover {
    color: var(--bp-white);
}

/* ==========================================================================
   Page Hero (Internal Pages)
   ========================================================================== */
.bp-page-hero {
    position: relative;
    padding: var(--bp-space-24) 0 var(--bp-space-16);
    overflow: hidden;
    margin-bottom: 0;
}

.bp-page-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bp-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 40%, var(--bp-secondary-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
}

/* Geometric decorations */
.bp-page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

.bp-page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--bp-secondary) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.bp-page-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bp-page-hero__subtitle {
    display: inline-flex;
    align-items: center;
    gap: var(--bp-space-2);
    font-size: var(--bp-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
    padding: var(--bp-space-2) var(--bp-space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--bp-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bp-page-hero__subtitle::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--bp-teal), var(--bp-orange));
    border-radius: 50%;
}

.bp-page-hero__title {
    font-size: var(--bp-text-5xl);
    font-weight: 700;
    color: var(--bp-white);
    line-height: 1.15;
    margin-bottom: var(--bp-space-5);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.bp-page-hero__desc {
    font-size: var(--bp-text-xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.bp-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-16);
    align-items: center;
}

.bp-about-story__title {
    font-size: var(--bp-text-4xl);
    margin-bottom: var(--bp-space-6);
}

.bp-about-story__content p {
    font-size: var(--bp-text-lg);
    line-height: 1.8;
    color: var(--bp-gray-600);
}

.bp-about-story__image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bp-gray-100), var(--bp-gray-200));
    border-radius: var(--bp-radius-2xl);
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.1);
}

.bp-about-story__image-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 2px dashed var(--bp-gray-300);
    border-radius: var(--bp-radius-xl);
    pointer-events: none;
}

.bp-about-story__image-placeholder::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--bp-space-4);
    color: var(--bp-gray-400);
}

.bp-about-story__image-placeholder svg {
    width: 80px;
    height: 80px;
}

.bp-about-story__image-placeholder span {
    font-size: var(--bp-text-sm);
}

/* Mission & Values */
.bp-mission__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-8);
    margin-bottom: var(--bp-space-16);
}

.bp-mission__card {
    padding: var(--bp-space-12);
    border-radius: var(--bp-radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bp-mission__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.bp-mission__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.6), rgba(255,255,255,0.3));
}

.bp-mission__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.bp-mission__card--mission {
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-primary-light));
    color: var(--bp-white);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.3);
}

.bp-mission__card--vision {
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-dark));
    color: var(--bp-white);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

.bp-mission__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--bp-space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--bp-radius-full);
}

.bp-mission__icon svg {
    width: 32px;
    height: 32px;
}

.bp-mission__card h3 {
    font-size: var(--bp-text-2xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-mission__card p {
    font-size: var(--bp-text-lg);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 0;
}

.bp-values__title {
    text-align: center;
    font-size: var(--bp-text-2xl);
    margin-bottom: var(--bp-space-10);
}

.bp-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-6);
}

.bp-value {
    text-align: center;
    padding: var(--bp-space-8);
    background: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--bp-gray-200);
    position: relative;
    overflow: hidden;
}

.bp-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-secondary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bp-value:hover {
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.15);
    transform: translateY(-8px);
    border-color: var(--bp-secondary-light);
}

.bp-value:hover::before {
    transform: scaleX(1);
}

.bp-value__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--bp-space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-lg);
    color: var(--bp-white);
}

.bp-value__icon svg {
    width: 28px;
    height: 28px;
}

.bp-value h4 {
    font-size: var(--bp-text-lg);
    margin-bottom: var(--bp-space-2);
}

.bp-value p {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Team Section */
.bp-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bp-space-6);
}

.bp-team__member {
    text-align: center;
    padding: var(--bp-space-8);
    background: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--bp-gray-200);
    position: relative;
    overflow: hidden;
}

.bp-team__member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(52, 152, 219, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bp-team__member:hover {
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.15);
    transform: translateY(-10px);
    border-color: var(--bp-secondary-light);
}

.bp-team__member:hover::before {
    opacity: 1;
}

.bp-team__avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto var(--bp-space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-full);
    color: var(--bp-white);
    font-size: var(--bp-text-2xl);
    font-weight: 600;
    position: relative;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.4s ease;
}

.bp-team__avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--bp-radius-full);
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-accent));
    z-index: -1;
    opacity: 0.3;
}

.bp-team__member:hover .bp-team__avatar {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.bp-team__name {
    font-size: var(--bp-text-xl);
    margin-bottom: var(--bp-space-1);
}

.bp-team__role {
    font-size: var(--bp-text-sm);
    color: var(--bp-secondary);
    font-weight: 500;
    margin-bottom: var(--bp-space-3);
}

.bp-team__bio {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Choose Us */
.bp-why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-16);
    align-items: start;
}

.bp-why-us__title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-why-us__desc {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.bp-why-us__features {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-6);
}

.bp-why-us__feature {
    display: flex;
    gap: var(--bp-space-5);
    padding: var(--bp-space-6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--bp-radius-lg);
}

.bp-why-us__number {
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-3xl);
    font-weight: 700;
    color: var(--bp-secondary-light);
    line-height: 1;
}

.bp-why-us__feature-content h4 {
    font-size: var(--bp-text-xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-2);
}

.bp-why-us__feature-content p {
    font-size: var(--bp-text-base);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

/* CTA Section */
.bp-cta {
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-dark));
}

.bp-cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bp-cta__title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-cta__text {
    font-size: var(--bp-text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--bp-space-8);
}

.bp-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--bp-space-4);
    flex-wrap: wrap;
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */
.bp-services-list {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-8);
}

.bp-service-detail {
    background: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    padding: var(--bp-space-8);
    box-shadow: var(--bp-shadow);
    transition: all var(--bp-transition);
}

.bp-service-detail:hover {
    box-shadow: var(--bp-shadow-lg);
}

.bp-service-detail__header {
    display: flex;
    gap: var(--bp-space-6);
    margin-bottom: var(--bp-space-6);
    padding-bottom: var(--bp-space-6);
    border-bottom: 1px solid var(--bp-gray-200);
}

.bp-service-detail__icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-lg);
    color: var(--bp-white);
}

.bp-service-detail__icon svg {
    width: 36px;
    height: 36px;
}

.bp-service-detail__intro {
    flex-grow: 1;
}

.bp-service-detail__title {
    font-size: var(--bp-text-2xl);
    margin-bottom: var(--bp-space-2);
}

.bp-service-detail__short {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-600);
    margin-bottom: 0;
}

.bp-service-detail__body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--bp-space-8);
}

.bp-service-detail__desc p {
    font-size: var(--bp-text-base);
    color: var(--bp-gray-600);
    line-height: 1.8;
    margin-bottom: 0;
}

.bp-service-detail__benefits h4 {
    font-size: var(--bp-text-lg);
    margin-bottom: var(--bp-space-4);
    color: var(--bp-primary);
}

.bp-service-detail__benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-service-detail__benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--bp-space-3);
    margin-bottom: var(--bp-space-3);
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-700);
}

.bp-service-detail__benefits li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--bp-secondary);
    margin-top: 2px;
}

/* Industries */
.bp-industries__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--bp-space-6);
}

.bp-industry {
    text-align: center;
    padding: var(--bp-space-6);
    background: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    transition: all var(--bp-transition);
}

.bp-industry:hover {
    box-shadow: var(--bp-shadow-lg);
    transform: translateY(-4px);
}

.bp-industry__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--bp-space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bp-gray-100);
    border-radius: var(--bp-radius-lg);
    color: var(--bp-secondary);
    transition: all var(--bp-transition);
}

.bp-industry:hover .bp-industry__icon {
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    color: var(--bp-white);
}

.bp-industry__icon svg {
    width: 28px;
    height: 28px;
}

.bp-industry h4 {
    font-size: var(--bp-text-base);
    color: var(--bp-primary);
    margin-bottom: 0;
}

/* Process Steps */
.bp-process__steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--bp-space-4);
}

.bp-process__step {
    flex: 1;
    text-align: center;
    padding: var(--bp-space-6);
}

.bp-process__number {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--bp-space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-full);
    color: var(--bp-white);
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-2xl);
    font-weight: 700;
}

.bp-process__step h4 {
    font-size: var(--bp-text-xl);
    margin-bottom: var(--bp-space-2);
}

.bp-process__step p {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.bp-process__connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--bp-secondary-light), var(--bp-secondary));
    margin-top: 28px;
}

/* Services CTA */
.bp-services-cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bp-services-cta__inner h2 {
    font-size: var(--bp-text-4xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-services-cta__inner p {
    font-size: var(--bp-text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--bp-space-8);
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.bp-contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--bp-space-12);
    align-items: start;
}

.bp-contact-info-card {
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-primary-light));
    color: var(--bp-white);
    padding: var(--bp-space-10);
    border-radius: var(--bp-radius-xl);
    height: 100%;
}

.bp-contact-info-card h3 {
    font-size: var(--bp-text-2xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-contact-info-card__desc {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--bp-space-8);
}

.bp-contact-info-card__items {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-6);
    margin-bottom: var(--bp-space-10);
}

.bp-contact-info-item {
    display: flex;
    gap: var(--bp-space-4);
}

.bp-contact-info-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--bp-radius-lg);
}

.bp-contact-info-item__icon svg {
    width: 22px;
    height: 22px;
}

.bp-contact-info-item__content h4 {
    font-size: var(--bp-text-base);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-1);
    font-weight: 600;
}

.bp-contact-info-item__content a,
.bp-contact-info-item__content p,
.bp-contact-info-item__content address {
    font-size: var(--bp-text-sm);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 0;
}

.bp-contact-info-item__content a:hover {
    color: var(--bp-white);
}

.bp-contact-info-card__social h4 {
    font-size: var(--bp-text-base);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-social--contact .bp-social__link {
    background: rgba(255, 255, 255, 0.15);
}

.bp-social--contact .bp-social__link:hover {
    background: var(--bp-secondary);
}

.bp-contact-form-card {
    background: var(--bp-white);
    padding: var(--bp-space-12);
    border-radius: var(--bp-radius-2xl);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
    position: relative;
    overflow: hidden;
}

.bp-contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-secondary-light), var(--bp-accent));
}

.bp-contact-form-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bp-contact-form-card h3 {
    font-size: var(--bp-text-2xl);
    margin-bottom: var(--bp-space-2);
    position: relative;
}

.bp-contact-form-card > p {
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-8);
    position: relative;
}

/* Map Section */
.bp-map-placeholder {
    background: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
}

.bp-map-placeholder__inner {
    padding: var(--bp-space-16);
    text-align: center;
    background: linear-gradient(135deg, var(--bp-gray-100), var(--bp-gray-200));
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--bp-space-4);
}

.bp-map-placeholder__inner svg {
    width: 80px;
    height: 80px;
    color: var(--bp-gray-400);
}

.bp-map-placeholder__inner h4 {
    font-size: var(--bp-text-xl);
    margin-bottom: 0;
}

.bp-map-placeholder__inner p {
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-4);
}

/* ==========================================================================
   Responsive - Page Templates
   ========================================================================== */
@media (max-width: 1024px) {
    .bp-about-story__grid {
        gap: var(--bp-space-10);
    }
    
    .bp-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-why-us__grid {
        gap: var(--bp-space-10);
    }
    
    .bp-industries__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bp-process__steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .bp-process__connector {
        display: none;
    }
    
    .bp-process__step {
        flex: 0 0 calc(50% - var(--bp-space-4));
    }
    
    .bp-service-detail__body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bp-page-hero__title {
        font-size: var(--bp-text-4xl);
    }
    
    .bp-about-story__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-mission__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-team__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-why-us__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-process__step {
        flex: 0 0 100%;
    }
    
    .bp-service-detail__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bp-contact-page__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-contact-info-card {
        padding: var(--bp-space-8);
    }
    
    .bp-contact-form-card {
        padding: var(--bp-space-6);
    }
}

@media (max-width: 480px) {
    .bp-page-hero__title {
        font-size: var(--bp-text-3xl);
    }
    
    .bp-values__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-industries__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-cta__buttons {
        flex-direction: column;
    }
    
    .bp-cta__buttons .bp-btn {
        width: 100%;
    }
}

/* ==========================================================================
   PRODUCTS PAGE STYLES
   ========================================================================== */

/* Products Hero Section */
.bp-products-hero {
    position: relative;
    padding: var(--bp-space-32) 0 var(--bp-space-24);
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bp-products-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bp-products-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 40%, var(--bp-secondary-dark) 100%);
}

.bp-products-hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bp-products-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.bp-products-hero__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--bp-white);
    top: -100px;
    right: -100px;
}

.bp-products-hero__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--bp-secondary);
    bottom: -50px;
    left: 10%;
}

.bp-products-hero__shape--3 {
    width: 200px;
    height: 200px;
    background: var(--bp-white);
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
}

.bp-products-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.bp-products-hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--bp-space-2);
    padding: var(--bp-space-2) var(--bp-space-4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--bp-radius-full);
    font-size: var(--bp-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bp-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--bp-space-4);
    margin-bottom: var(--bp-space-4);
}

.bp-products-hero__title {
    font-size: var(--bp-text-6xl);
    font-weight: 700;
    color: var(--bp-white);
    line-height: 1.1;
    margin-bottom: var(--bp-space-6);
}

.bp-products-hero__description {
    font-size: var(--bp-text-xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--bp-space-8);
}

.bp-products-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-4);
}

.bp-products-hero__cta .bp-btn svg {
    width: 18px;
    height: 18px;
}

/* Product Filter Navigation */
.bp-products-filter {
    padding: var(--bp-space-8) 0;
    background-color: var(--bp-white);
    border-bottom: 1px solid var(--bp-gray-200);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.bp-filter-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-3);
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-filter-nav__btn {
    padding: var(--bp-space-3) var(--bp-space-6);
    background-color: var(--bp-gray-100);
    border: 2px solid transparent;
    border-radius: var(--bp-radius-full);
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-sm);
    font-weight: 500;
    color: var(--bp-gray-700);
    cursor: pointer;
    transition: all var(--bp-transition-fast);
}

.bp-filter-nav__btn:hover {
    background-color: var(--bp-gray-200);
    color: var(--bp-primary);
}

.bp-filter-nav__btn--active {
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    border-color: var(--bp-secondary);
}

.bp-filter-nav__btn--active:hover {
    background-color: var(--bp-secondary-dark);
    color: var(--bp-white);
}

/* More Dropdown Filter */
.bp-filter-nav__item--more {
    position: relative;
}

.bp-filter-nav__btn--more {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bp-filter-nav__arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--bp-transition-fast);
}

.bp-filter-nav__item--more.is-open .bp-filter-nav__arrow,
.bp-filter-nav__item--more:hover .bp-filter-nav__arrow {
    transform: rotate(180deg);
}

.bp-filter-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bp-white);
    border: 2px solid var(--bp-gray-200);
    border-radius: var(--bp-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: var(--bp-space-2);
    opacity: 0;
    visibility: hidden;
    transition: all var(--bp-transition-fast);
    z-index: 1000;
}

.bp-filter-nav__item--more.is-open .bp-filter-nav__dropdown,
.bp-filter-nav__item--more:hover .bp-filter-nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.bp-filter-nav__dropdown li {
    list-style: none;
}

.bp-filter-nav__dropdown-btn {
    width: 100%;
    padding: var(--bp-space-3) var(--bp-space-4);
    background: transparent;
    border: none;
    border-radius: var(--bp-radius-md);
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-sm);
    font-weight: 500;
    color: var(--bp-gray-700);
    text-align: left;
    cursor: pointer;
    transition: all var(--bp-transition-fast);
}

.bp-filter-nav__dropdown-btn:hover {
    background-color: var(--bp-gray-100);
    color: var(--bp-primary);
}

.bp-filter-nav__dropdown-btn.bp-filter-nav__btn--active {
    background-color: rgba(20, 184, 166, 0.1);
    color: var(--bp-secondary);
}

.bp-filter-nav__btn--more.has-active-child {
    background-color: rgba(20, 184, 166, 0.1);
    color: var(--bp-secondary);
    border-color: var(--bp-secondary);
}

/* Products Grid */
.bp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--bp-space-6);
    max-width: 1400px;
    margin: 0 auto;
}

/* Limit max width of product cards to prevent stretching */
.bp-product-card {
    max-width: 400px;
    justify-self: center;
}

/* Product Card */
.bp-product-card {
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
}

.bp-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.bp-product-card:hover {
    box-shadow: 0 25px 60px rgba(30, 58, 95, 0.15);
    transform: translateY(-12px);
    border-color: var(--bp-secondary-light);
}

.bp-product-card:hover::before {
    transform: scaleX(1);
}

.bp-product-card.hidden {
    display: none;
}

.bp-product-card__image {
    position: relative;
    aspect-ratio: 4/3;
    margin: 0;
    overflow: hidden;
}

.bp-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bp-product-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 95, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bp-product-card:hover .bp-product-card__image::after {
    opacity: 1;
}

.bp-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-gray-100), var(--bp-gray-200));
    color: var(--bp-gray-400);
    transition: all var(--bp-transition);
}

.bp-product-card:hover .bp-product-card__placeholder {
    background: linear-gradient(135deg, var(--bp-gray-200), var(--bp-gray-300));
}

.bp-product-card__placeholder svg {
    width: 48px;
    height: 48px;
}

.bp-product-card__badge {
    position: absolute;
    top: var(--bp-space-3);
    left: var(--bp-space-3);
    padding: var(--bp-space-1) var(--bp-space-3);
    background: linear-gradient(135deg, var(--bp-teal), var(--bp-orange));
    color: var(--bp-white);
    font-size: var(--bp-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--bp-radius);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.bp-product-card__content {
    padding: var(--bp-space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bp-product-card__title {
    font-size: var(--bp-text-xl);
    font-weight: 600;
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-2);
}

.bp-product-card__description {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.6;
    margin-bottom: var(--bp-space-4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp-product-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--bp-space-6);
    flex-grow: 1;
}

.bp-product-card__features li {
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
    font-size: var(--bp-text-xs);
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-2);
}

.bp-product-card__features li svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--bp-secondary);
}

.bp-product-card__footer {
    display: flex;
    gap: var(--bp-space-3);
    margin-top: auto;
}

.bp-product-card__footer .bp-btn {
    flex: 1;
    padding: var(--bp-space-2) var(--bp-space-3);
    font-size: var(--bp-text-sm);
    justify-content: center;
}

/* Featured Product Section */
.bp-featured-product {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 100%);
    color: var(--bp-white);
}

.bp-featured-product__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-16);
    align-items: center;
}

.bp-featured-product__image {
    margin: 0;
}

.bp-featured-product__placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--bp-space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--bp-radius-xl);
    color: rgba(255, 255, 255, 0.5);
}

.bp-featured-product__placeholder svg {
    width: 80px;
    height: 80px;
}

.bp-featured-product__placeholder span {
    font-size: var(--bp-text-sm);
}

.bp-featured-product__label {
    display: inline-block;
    padding: var(--bp-space-1) var(--bp-space-3);
    background: var(--bp-accent);
    border-radius: var(--bp-radius);
    font-size: var(--bp-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--bp-space-4);
}

.bp-featured-product__title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-featured-product__description {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--bp-space-8);
}

.bp-featured-product__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--bp-space-8);
}

.bp-featured-product__benefits li {
    display: flex;
    gap: var(--bp-space-4);
    margin-bottom: var(--bp-space-4);
}

.bp-featured-product__benefits li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--bp-secondary-light);
    margin-top: 2px;
}

.bp-featured-product__benefits li strong {
    display: block;
    font-size: var(--bp-text-base);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-1);
}

.bp-featured-product__benefits li span {
    font-size: var(--bp-text-sm);
    color: rgba(255, 255, 255, 0.75);
}

.bp-featured-product__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-4);
}

/* Industries Grid (Products Page) */
.bp-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-6);
}

.bp-industry-card {
    background: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    padding: var(--bp-space-8);
    text-align: center;
    box-shadow: var(--bp-shadow);
    transition: all var(--bp-transition);
}

.bp-industry-card:hover {
    box-shadow: var(--bp-shadow-lg);
    transform: translateY(-4px);
}

.bp-industry-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--bp-space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-lg);
    color: var(--bp-white);
}

.bp-industry-card__icon svg {
    width: 28px;
    height: 28px;
}

.bp-industry-card__title {
    font-size: var(--bp-text-lg);
    margin-bottom: var(--bp-space-3);
}

.bp-industry-card__description {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.6;
    margin-bottom: var(--bp-space-4);
}

.bp-industry-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--bp-space-2);
    font-size: var(--bp-text-sm);
    font-weight: 600;
    color: var(--bp-secondary);
    text-decoration: none;
}

.bp-industry-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--bp-transition-fast);
}

.bp-industry-card__link:hover svg {
    transform: translateX(4px);
}

/* Products CTA Section */
.bp-products-cta {
    background: linear-gradient(135deg, var(--bp-secondary) 0%, var(--bp-secondary-dark) 100%);
}

.bp-products-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bp-space-12);
    flex-wrap: wrap;
}

.bp-products-cta__content {
    flex: 1;
    min-width: 300px;
}

.bp-products-cta__title {
    font-size: var(--bp-text-3xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-products-cta__text {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.7;
}

.bp-products-cta__actions {
    display: flex;
    gap: var(--bp-space-4);
    flex-wrap: wrap;
}

.bp-products-cta__actions .bp-btn svg {
    width: 18px;
    height: 18px;
}

/* Products Page Responsive */
@media (max-width: 1200px) {
    .bp-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .bp-products-hero__title {
        font-size: var(--bp-text-5xl);
    }
    
    .bp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-featured-product__wrapper {
        gap: var(--bp-space-10);
    }
    
    .bp-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bp-products-hero {
        padding: var(--bp-space-16) 0;
        min-height: auto;
    }
    
    .bp-products-hero__title {
        font-size: var(--bp-text-4xl);
    }
    
    .bp-products-hero__cta {
        flex-direction: column;
    }
    
    .bp-products-hero__cta .bp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bp-products-filter {
        position: static;
    }
    
    .bp-filter-nav__list {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--bp-space-2);
        -webkit-overflow-scrolling: touch;
    }
    
    .bp-filter-nav__btn {
        white-space: nowrap;
    }
    
    .bp-products-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-featured-product__wrapper {
        grid-template-columns: 1fr;
    }
    
    .bp-featured-product__image {
        order: -1;
    }
    
    .bp-industries-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-products-cta__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .bp-products-cta__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .bp-products-cta__actions .bp-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bp-products-hero__title {
        font-size: var(--bp-text-3xl);
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES
   ========================================================================== */

/* Product Detail Hero */
.bp-product-hero {
    position: relative;
    padding: var(--bp-space-20) 0 var(--bp-space-24);
    overflow: hidden;
}

.bp-product-hero__background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bp-gray-50) 0%, var(--bp-white) 100%);
    z-index: 0;
}

/* Decorative shapes for product hero */
.bp-product-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite;
}

.bp-product-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bp-product-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-12);
    align-items: center;
}

.bp-product-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
    font-size: var(--bp-text-sm);
    margin-bottom: var(--bp-space-4);
}

.bp-product-hero__breadcrumb a {
    color: var(--bp-gray-500);
    text-decoration: none;
    transition: color var(--bp-transition-fast);
}

.bp-product-hero__breadcrumb a:hover {
    color: var(--bp-secondary);
}

.bp-product-hero__breadcrumb span {
    color: var(--bp-gray-400);
}

.bp-product-hero__breadcrumb .current {
    color: var(--bp-primary);
    font-weight: 500;
}

.bp-product-hero__title {
    font-size: var(--bp-text-5xl);
    line-height: 1.1;
    margin-bottom: var(--bp-space-4);
}

.bp-product-hero__summary {
    font-size: var(--bp-text-xl);
    color: var(--bp-gray-600);
    line-height: 1.7;
    margin-bottom: var(--bp-space-6);
}

.bp-product-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-3);
    margin-bottom: var(--bp-space-8);
}

.bp-product-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--bp-space-2);
    padding: var(--bp-space-2) var(--bp-space-4);
    background-color: var(--bp-white);
    border: 1px solid var(--bp-gray-200);
    border-radius: var(--bp-radius-full);
    font-size: var(--bp-text-sm);
    font-weight: 500;
    color: var(--bp-gray-700);
    box-shadow: var(--bp-shadow-sm);
}

.bp-product-badge svg {
    width: 16px;
    height: 16px;
    color: var(--bp-secondary);
}

.bp-product-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-4);
}

.bp-product-hero__cta .bp-btn svg {
    width: 18px;
    height: 18px;
}

.bp-product-hero__image-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--bp-space-4);
    background: var(--bp-white);
    border: 2px dashed var(--bp-gray-300);
    border-radius: var(--bp-radius-xl);
    color: var(--bp-gray-400);
}

.bp-product-hero__image-placeholder svg {
    width: 80px;
    height: 80px;
}

.bp-product-hero__image-placeholder span {
    font-size: var(--bp-text-sm);
}

/* Product Overview */
.bp-product-overview__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--bp-space-16);
    align-items: start;
}

.bp-section-label {
    display: inline-block;
    font-size: var(--bp-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bp-secondary);
    margin-bottom: var(--bp-space-3);
}

.bp-product-overview__title {
    font-size: var(--bp-text-3xl);
    margin-bottom: var(--bp-space-6);
}

.bp-product-overview__intro {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-700);
    line-height: 1.8;
}

.bp-product-overview__content p {
    color: var(--bp-gray-600);
    line-height: 1.8;
}

.bp-product-overview__points {
    background-color: var(--bp-gray-100);
    border-radius: var(--bp-radius-xl);
    padding: var(--bp-space-8);
}

.bp-product-overview__points-title {
    font-size: var(--bp-text-xl);
    margin-bottom: var(--bp-space-6);
}

.bp-product-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-product-points li {
    display: flex;
    gap: var(--bp-space-3);
    margin-bottom: var(--bp-space-4);
    line-height: 1.6;
}

.bp-product-points li:last-child {
    margin-bottom: 0;
}

.bp-product-points li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--bp-secondary);
    margin-top: 2px;
}

.bp-product-points li span {
    color: var(--bp-gray-700);
}

/* Specifications Grid */
.bp-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-6);
}

.bp-specs-stack {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-6);
}

.bp-specs-category {
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    padding: var(--bp-space-6);
    box-shadow: var(--bp-shadow);
}

.bp-specs-category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bp-space-4);
    margin-bottom: var(--bp-space-5);
    padding-bottom: var(--bp-space-4);
    border-bottom: 2px solid var(--bp-secondary);
}

.bp-specs-category__title {
    display: flex;
    align-items: center;
    gap: var(--bp-space-3);
    font-size: var(--bp-text-lg);
    margin: 0;
}

.bp-specs-category__title svg {
    width: 24px;
    height: 24px;
    color: var(--bp-secondary);
}

/* Specs Tabs */
.bp-specs-tabs {
    display: flex;
    gap: var(--bp-space-2);
    flex-shrink: 0;
}

.bp-specs-tab {
    background: var(--bp-gray-100);
    border: none;
    border-radius: var(--bp-radius-md);
    padding: var(--bp-space-2) var(--bp-space-4);
    font-size: var(--bp-text-sm);
    font-weight: 500;
    color: var(--bp-gray-600);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.bp-specs-tab:hover {
    background: var(--bp-gray-200);
    color: var(--bp-primary);
}

.bp-specs-tab.active {
    background: linear-gradient(135deg, var(--bp-teal), var(--bp-orange));
    color: var(--bp-white);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.bp-specs-tab-content {
    display: none;
}

.bp-specs-tab-content.active {
    display: block;
}

.bp-specs-list {
    display: flex;
    flex-direction: column;
}

.bp-specs-list--no-tab {
    margin-top: var(--bp-space-5);
    padding-top: var(--bp-space-5);
    border-top: 1px solid var(--bp-gray-200);
}

.bp-spec-row {
    display: flex;
    justify-content: space-between;
    gap: var(--bp-space-4);
    padding: var(--bp-space-3) 0;
    border-bottom: 1px solid var(--bp-gray-200);
}

.bp-spec-row:last-child {
    border-bottom: none;
}

.bp-spec-label {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
}

.bp-spec-value {
    font-size: var(--bp-text-sm);
    font-weight: 600;
    color: var(--bp-primary);
    text-align: right;
}

/* Application Cards */
.bp-applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-6);
}

.bp-application-card {
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    padding: var(--bp-space-6);
    text-align: center;
    box-shadow: var(--bp-shadow);
    transition: all var(--bp-transition);
}

.bp-application-card:hover {
    box-shadow: var(--bp-shadow-lg);
    transform: translateY(-4px);
}

.bp-application-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--bp-space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-lg);
    color: var(--bp-white);
}

.bp-application-card__icon svg {
    width: 28px;
    height: 28px;
}

.bp-application-card__title {
    font-size: var(--bp-text-lg);
    margin-bottom: var(--bp-space-2);
}

.bp-application-card__desc {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Benefit Cards (Dark Section) */
.bp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-6);
}

.bp-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--bp-radius-lg);
    padding: var(--bp-space-6);
    text-align: center;
    transition: all var(--bp-transition);
}

.bp-benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.bp-benefit-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--bp-space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bp-secondary);
    border-radius: var(--bp-radius-full);
    color: var(--bp-white);
}

.bp-benefit-card__icon svg {
    width: 24px;
    height: 24px;
}

.bp-benefit-card__title {
    font-size: var(--bp-text-lg);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-2);
}

.bp-benefit-card__desc {
    font-size: var(--bp-text-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Order Process */
.bp-order-process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.bp-order-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: var(--bp-space-6);
    position: relative;
}

.bp-order-step__number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-4xl);
    font-weight: 800;
    color: var(--bp-gray-200);
    line-height: 1;
    z-index: 0;
}

.bp-order-step__icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    margin: var(--bp-space-6) auto var(--bp-space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-full);
    color: var(--bp-white);
    box-shadow: var(--bp-shadow-lg);
}

.bp-order-step__icon svg {
    width: 32px;
    height: 32px;
}

.bp-order-step__title {
    font-size: var(--bp-text-xl);
    margin-bottom: var(--bp-space-2);
}

.bp-order-step__desc {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.bp-order-step__connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--bp-secondary-light), var(--bp-secondary));
    margin-top: 80px;
}

/* Download Cards */
.bp-downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-6);
}

.bp-download-card {
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    padding: var(--bp-space-5);
    text-decoration: none;
    box-shadow: var(--bp-shadow);
    transition: all var(--bp-transition);
}

.bp-download-card:hover {
    box-shadow: var(--bp-shadow-lg);
    transform: translateY(-2px);
}

.bp-download-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bp-gray-100);
    border-radius: var(--bp-radius-lg);
    color: var(--bp-secondary);
}

.bp-download-card__icon svg {
    width: 28px;
    height: 28px;
}

.bp-download-card__content {
    flex-grow: 1;
}

.bp-download-card__title {
    font-size: var(--bp-text-base);
    font-weight: 600;
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-1);
}

.bp-download-card__desc {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-1);
}

.bp-download-card__meta {
    font-size: var(--bp-text-xs);
    color: var(--bp-gray-500);
}

.bp-download-card__action {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bp-secondary);
    border-radius: var(--bp-radius-full);
    color: var(--bp-white);
    transition: all var(--bp-transition-fast);
}

.bp-download-card:hover .bp-download-card__action {
    background-color: var(--bp-secondary-dark);
}

.bp-download-card__action svg {
    width: 18px;
    height: 18px;
}

/* Product Enquiry Section */
.bp-product-enquiry {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-light) 100%);
    color: var(--bp-white);
}

.bp-product-enquiry__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-12);
    align-items: start;
}

.bp-product-enquiry__title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-product-enquiry__text {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--bp-space-8);
}

.bp-product-enquiry__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-4);
    margin-bottom: var(--bp-space-8);
}

.bp-product-enquiry__actions .bp-btn svg {
    width: 18px;
    height: 18px;
}

.bp-product-enquiry__contact {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-6);
}

.bp-product-enquiry__contact-item {
    display: flex;
    align-items: center;
    gap: var(--bp-space-3);
    color: rgba(255, 255, 255, 0.9);
}

.bp-product-enquiry__contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--bp-secondary-light);
}

.bp-product-enquiry__form {
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    padding: var(--bp-space-8);
}

.bp-product-enquiry__form h3 {
    font-size: var(--bp-text-2xl);
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-6);
}

.bp-product-enquiry__form .bp-contact-form__field {
    margin-bottom: var(--bp-space-4);
}

.bp-product-enquiry__form input,
.bp-product-enquiry__form textarea {
    width: 100%;
    padding: var(--bp-space-3) var(--bp-space-4);
    border: 2px solid var(--bp-gray-200);
    border-radius: var(--bp-radius);
    font-size: var(--bp-text-base);
    transition: border-color var(--bp-transition-fast);
}

.bp-product-enquiry__form input:focus,
.bp-product-enquiry__form textarea:focus {
    outline: none;
    border-color: var(--bp-secondary);
}

.bp-product-enquiry__form .bp-btn {
    width: 100%;
    justify-content: center;
}

/* Product Detail Responsive */
@media (max-width: 1024px) {
    .bp-product-hero__grid {
        gap: var(--bp-space-8);
    }
    
    .bp-product-overview__grid {
        gap: var(--bp-space-10);
    }
    
    .bp-applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-order-process {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .bp-order-step__connector {
        display: none;
    }
    
    .bp-order-step {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .bp-product-hero {
        padding: var(--bp-space-12) 0 var(--bp-space-16);
    }
    
    .bp-product-hero__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-product-hero__image {
        order: -1;
    }
    
    .bp-product-hero__title {
        font-size: var(--bp-text-4xl);
    }
    
    .bp-product-hero__cta {
        flex-direction: column;
    }
    
    .bp-product-hero__cta .bp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bp-product-overview__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-applications-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-order-step {
        flex: 0 0 100%;
    }
    
    .bp-downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-product-enquiry__wrapper {
        grid-template-columns: 1fr;
    }
    
    .bp-product-enquiry__actions {
        flex-direction: column;
    }
    
    .bp-product-enquiry__actions .bp-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bp-product-hero__title {
        font-size: var(--bp-text-3xl);
    }
    
    .bp-product-hero__badges {
        gap: var(--bp-space-2);
    }
    
    .bp-product-badge {
        font-size: var(--bp-text-xs);
        padding: var(--bp-space-1) var(--bp-space-3);
    }
    
    .bp-spec-row {
        flex-direction: column;
        gap: var(--bp-space-1);
    }
    
    .bp-spec-value {
        text-align: left;
    }
}

/* ==========================================================================
   PRODUCT GALLERY / CAROUSEL
   ========================================================================== */

.bp-product-gallery {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.bp-product-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    overflow: hidden;
    box-shadow: var(--bp-shadow-xl);
}

.bp-product-gallery__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--bp-transition-normal);
    pointer-events: none;
}

.bp-product-gallery__image.active {
    opacity: 1;
    pointer-events: auto;
}

.bp-product-gallery__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--bp-space-4);
    margin-top: var(--bp-space-6);
}

.bp-product-gallery__prev,
.bp-product-gallery__next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bp-white);
    border: 2px solid var(--bp-gray-200);
    border-radius: var(--bp-radius-lg);
    color: var(--bp-gray-600);
    cursor: pointer;
    transition: all var(--bp-transition-fast);
}

.bp-product-gallery__prev:hover,
.bp-product-gallery__next:hover {
    background-color: var(--bp-secondary);
    border-color: var(--bp-secondary);
    color: var(--bp-white);
    transform: scale(1.05);
}

.bp-product-gallery__prev svg,
.bp-product-gallery__next svg {
    width: 20px;
    height: 20px;
}

.bp-product-gallery__dots {
    display: flex;
    gap: var(--bp-space-2);
}

.bp-product-gallery__dot {
    width: 12px;
    height: 12px;
    border-radius: var(--bp-radius-full);
    background-color: var(--bp-gray-300);
    border: none;
    cursor: pointer;
    transition: all var(--bp-transition-fast);
    padding: 0;
}

.bp-product-gallery__dot:hover {
    background-color: var(--bp-gray-400);
    transform: scale(1.2);
}

.bp-product-gallery__dot.active {
    background-color: var(--bp-secondary);
    width: 24px;
}

/* Thumbnail Gallery */
.bp-product-gallery__thumbnails {
    display: flex;
    gap: var(--bp-space-3);
    justify-content: center;
    margin-top: var(--bp-space-4);
}

.bp-product-gallery__thumb {
    width: 60px;
    height: 60px;
    padding: 0;
    border: 2px solid var(--bp-gray-200);
    border-radius: var(--bp-radius);
    background: var(--bp-white);
    cursor: pointer;
    transition: all var(--bp-transition-fast);
    overflow: hidden;
}

.bp-product-gallery__thumb:hover {
    border-color: var(--bp-secondary);
    transform: scale(1.05);
}

.bp-product-gallery__thumb.active {
    border-color: var(--bp-secondary);
    box-shadow: 0 0 0 2px rgba(var(--bp-secondary-rgb), 0.2);
}

.bp-product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .bp-product-gallery {
        max-width: 100%;
    }
    
    .bp-product-gallery__prev,
    .bp-product-gallery__next {
        width: 36px;
        height: 36px;
    }
    
    .bp-product-gallery__prev svg,
    .bp-product-gallery__next svg {
        width: 18px;
        height: 18px;
    }
    
    .bp-product-gallery__thumb {
        width: 50px;
        height: 50px;
    }
}


/* ==========================================================================
   WHITE LABELING PAGE STYLES
   ========================================================================== */

/* Tabs Navigation */
.bp-tabs-section {
    background-color: var(--bp-white);
    padding: var(--bp-space-8) 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bp-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bp-space-3);
    justify-content: center;
}

.bp-tabs-nav__btn {
    padding: var(--bp-space-4) var(--bp-space-8);
    background-color: var(--bp-gray-100);
    border: 2px solid transparent;
    border-radius: var(--bp-radius-lg);
    font-family: var(--bp-font-primary);
    font-size: var(--bp-text-base);
    font-weight: 600;
    color: var(--bp-gray-700);
    cursor: pointer;
    transition: all var(--bp-transition-fast);
    position: relative;
}

.bp-tabs-nav__btn:hover {
    background-color: var(--bp-gray-200);
    color: var(--bp-primary);
}

.bp-tabs-nav__btn--active {
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    border-color: var(--bp-secondary);
}

.bp-tabs-nav__btn--active:hover {
    background-color: var(--bp-secondary-dark);
    color: var(--bp-white);
}

.bp-tabs-nav__short {
    display: none;
}

/* Tab Panel */
.bp-tab-panel {
    display: none;
    padding: var(--bp-space-16) 0;
    animation: fadeIn 0.4s ease-out;
}

.bp-tab-panel--active {
    display: block;
}

/* Tab Header */
.bp-tab-header {
    display: flex;
    align-items: flex-start;
    gap: var(--bp-space-6);
    margin-bottom: var(--bp-space-12);
    padding-bottom: var(--bp-space-8);
    border-bottom: 2px solid var(--bp-gray-200);
}

.bp-tab-header__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-xl);
    color: var(--bp-white);
}

.bp-tab-header__icon svg {
    width: 40px;
    height: 40px;
}

.bp-tab-header__content h2 {
    font-size: var(--bp-text-3xl);
    margin-bottom: var(--bp-space-3);
}

.bp-tab-header__content p {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-600);
}

/* Service Grid */
.bp-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-6);
    margin-bottom: var(--bp-space-10);
}

.bp-service-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Service Card */
.bp-service-card {
    background-color: var(--bp-gray-50);
    padding: var(--bp-space-8);
    border-radius: var(--bp-radius-xl);
    border: 1px solid var(--bp-gray-200);
    transition: all var(--bp-transition-normal);
}

.bp-service-card:hover {
    background-color: var(--bp-white);
    border-color: var(--bp-secondary);
    box-shadow: var(--bp-shadow-lg);
    transform: translateY(-4px);
}

.bp-service-card--compact {
    padding: var(--bp-space-6);
}

.bp-service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    color: var(--bp-secondary);
    margin-bottom: var(--bp-space-4);
    box-shadow: var(--bp-shadow-sm);
}

.bp-service-card__icon svg {
    width: 28px;
    height: 28px;
}

.bp-service-card h4 {
    font-size: var(--bp-text-lg);
    margin-bottom: var(--bp-space-3);
}

.bp-service-card--compact h4 {
    font-size: var(--bp-text-base);
}

.bp-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-service-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--bp-space-2);
    padding: var(--bp-space-2) 0;
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
}

.bp-service-card li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--bp-secondary);
    margin-top: 2px;
}

.bp-service-card--compact p {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
}

/* Highlight Box */
.bp-highlight-box {
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    padding: var(--bp-space-10);
    border-radius: var(--bp-radius-xl);
    margin-bottom: var(--bp-space-10);
    color: var(--bp-white);
}

.bp-highlight-box h4 {
    font-size: var(--bp-text-xl);
    margin-bottom: var(--bp-space-6);
}

.bp-highlight-box p {
    opacity: 0.9;
    line-height: 1.8;
}

.bp-highlight-box__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-6);
}

.bp-highlight-item {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-1);
}

.bp-highlight-item strong {
    font-size: var(--bp-text-base);
}

.bp-highlight-item span {
    font-size: var(--bp-text-sm);
    opacity: 0.85;
}

/* Process Steps */
.bp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bp-space-6);
}

.bp-process-step {
    text-align: center;
}

.bp-process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--bp-radius-full);
    font-size: var(--bp-text-lg);
    font-weight: 700;
    margin-bottom: var(--bp-space-3);
}

.bp-process-step h5 {
    font-size: var(--bp-text-base);
    margin-bottom: var(--bp-space-2);
}

.bp-process-step p {
    font-size: var(--bp-text-sm);
    opacity: 0.85;
}

/* Facility Stats */
.bp-facility-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bp-space-6);
    margin-bottom: var(--bp-space-12);
}

.bp-facility-stat {
    text-align: center;
    padding: var(--bp-space-8);
    background: linear-gradient(135deg, var(--bp-gray-50), var(--bp-white));
    border-radius: var(--bp-radius-xl);
    border: 2px solid var(--bp-gray-200);
}

.bp-facility-stat__number {
    display: block;
    font-size: var(--bp-text-2xl);
    font-weight: 800;
    color: var(--bp-secondary);
    margin-bottom: var(--bp-space-2);
}

.bp-facility-stat__label {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    font-weight: 500;
}

/* Ideal For */
.bp-ideal-for {
    background-color: var(--bp-gray-50);
    padding: var(--bp-space-8);
    border-radius: var(--bp-radius-xl);
    border-left: 4px solid var(--bp-secondary);
}

.bp-ideal-for h4 {
    font-size: var(--bp-text-lg);
    color: var(--bp-secondary);
    margin-bottom: var(--bp-space-3);
}

.bp-ideal-for p {
    color: var(--bp-gray-600);
}

/* Stats Bar */
.bp-stats-bar {
    background: linear-gradient(135deg, 
        var(--bp-primary) 0%, 
        var(--bp-primary-light) 40%,
        var(--bp-secondary-dark) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    padding: var(--bp-space-16) 0;
    position: relative;
    overflow: hidden;
}

.bp-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.bp-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--bp-space-12);
    max-width: 1200px;
    margin: 0 auto;
}

.bp-stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.bp-stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bp-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--bp-font-heading);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bp-stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Section Headers */
.bp-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--bp-space-16);
}

.bp-section-tag {
    display: inline-block;
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    padding: var(--bp-space-2) var(--bp-space-5);
    border-radius: var(--bp-radius-full);
    font-size: var(--bp-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--bp-space-5);
}

.bp-section-tag--teal {
    background-color: var(--bp-secondary);
}

.bp-section-title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-4);
    font-family: var(--bp-font-heading);
    font-weight: 800;
}

.bp-section--dark .bp-section-title {
    color: var(--bp-white);
}

.bp-section-subtitle {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-600);
    line-height: 1.8;
}

.bp-section--dark .bp-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Products Available Section */
/* ==========================================================================
   Products Available Section - Enhanced
   ========================================================================== */
.bp-products-available {
    padding: var(--bp-space-20) 0;
    background: linear-gradient(180deg, var(--bp-gray-50) 0%, var(--bp-white) 50%, var(--bp-gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.bp-products-available::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.bp-products-available__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--bp-space-8);
    margin-bottom: var(--bp-space-12);
    position: relative;
    z-index: 1;
}

.bp-products-available__text {
    flex: 1;
    max-width: 700px;
}

.bp-products-available__text .bp-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(79, 70, 229, 0.1));
    color: var(--bp-secondary);
    padding: var(--bp-space-2) var(--bp-space-4);
    border-radius: var(--bp-radius-full);
    font-size: var(--bp-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--bp-space-3);
}

.bp-products-available__text .bp-section-title {
    font-size: var(--bp-text-4xl);
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-4);
    line-height: 1.2;
}

.bp-products-available__text .bp-section-subtitle {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-600);
    line-height: 1.7;
    margin: 0;
}

.bp-products-available__action {
    flex-shrink: 0;
}

.bp-products-available__action .bp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--bp-space-2);
    padding: var(--bp-space-4) var(--bp-space-8);
    font-size: var(--bp-text-base);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.bp-products-available__action .bp-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.bp-products-available__action .bp-btn:hover svg {
    transform: translateX(5px);
}

.bp-products-available__action .bp-btn:hover {
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

.bp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--bp-space-6);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bp-product-category {
    background: var(--bp-white);
    padding: var(--bp-space-8) var(--bp-space-6);
    border-radius: var(--bp-radius-xl);
    border: 2px solid var(--bp-gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.bp-product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bp-product-category:hover::before {
    transform: scaleX(1);
}

.bp-product-category:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02) 0%, rgba(79, 70, 229, 0.02) 100%);
    border-color: var(--bp-secondary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.15);
}

.bp-product-category__name {
    font-size: var(--bp-text-lg);
    font-weight: 700;
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-3);
    transition: color 0.3s ease;
}

.bp-product-category:hover .bp-product-category__name {
    color: var(--bp-secondary);
}

.bp-product-category__count {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .bp-products-available__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--bp-space-6);
    }
    
    .bp-products-available__action {
        width: 100%;
    }
    
    .bp-products-available__action .bp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bp-products-available__text .bp-section-title {
        font-size: var(--bp-text-3xl);
    }
    
    .bp-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Process Section */
.bp-process-section {
    padding: var(--bp-space-20) 0;
    background: linear-gradient(180deg, var(--bp-gray-50) 0%, var(--bp-white) 100%);
}

.bp-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--bp-space-6);
    max-width: 1400px;
    margin: 0 auto;
}

.bp-process-step {
    text-align: center;
    padding: var(--bp-space-10) var(--bp-space-6);
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-xl);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all var(--bp-transition-normal);
}

.bp-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.bp-process-step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-accent));
    color: var(--bp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--bp-text-2xl);
    font-weight: 800;
    margin: 0 auto var(--bp-space-5);
}

.bp-process-step__title {
    font-size: var(--bp-text-xl);
    font-weight: 700;
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-3);
}

.bp-process-step__description {
    color: var(--bp-gray-600);
    font-size: var(--bp-text-base);
    line-height: 1.6;
}

/* Capabilities Section */
.bp-capabilities-section {
    padding: var(--bp-space-20) 0;
    background-color: var(--bp-primary);
    color: var(--bp-white);
}

.bp-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--bp-space-8);
    max-width: 1400px;
    margin: 0 auto;
}

.bp-capability-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--bp-space-8) var(--bp-space-6);
    border-radius: var(--bp-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--bp-transition-normal);
}

.bp-capability-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--bp-secondary);
}

.bp-capability-icon {
    font-size: var(--bp-text-4xl);
    margin-bottom: var(--bp-space-5);
    display: block;
}

.bp-capability-title {
    font-size: var(--bp-text-xl);
    font-weight: 700;
    margin-bottom: var(--bp-space-3);
    color: var(--bp-white);
}

.bp-capability-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--bp-text-base);
    line-height: 1.6;
}

/* Partnership CTA Section */
.bp-partnership-cta {
    padding: var(--bp-space-20) 0;
    background: linear-gradient(135deg, var(--bp-gray-50) 0%, var(--bp-gray-100) 100%);
    border-top: 3px solid var(--bp-secondary);
}

.bp-partnership-cta__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bp-partnership-badge {
    display: inline-block;
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    padding: var(--bp-space-2) var(--bp-space-5);
    border-radius: var(--bp-radius-full);
    font-size: var(--bp-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--bp-space-6);
}

.bp-partnership-cta__title {
    font-family: var(--bp-font-heading);
    font-size: var(--bp-text-3xl);
    color: var(--bp-primary);
    margin-bottom: var(--bp-space-5);
    font-weight: 800;
}

.bp-partnership-cta__text {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-8);
    line-height: 1.7;
}

.bp-btn--partnership {
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-secondary));
    color: var(--bp-white);
    padding: var(--bp-space-5) var(--bp-space-10);
    font-size: var(--bp-text-lg);
    font-weight: 700;
    border: none;
    border-radius: var(--bp-radius-lg);
    text-decoration: none;
    display: inline-block;
    transition: all var(--bp-transition-normal);
}

.bp-btn--partnership:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 35, 50, 0.3);
}

/* White Labeling CTA */
.bp-white-labeling-cta .bp-cta__inner {
    text-align: center;
}

.bp-white-labeling-cta .bp-cta__title {
    font-size: var(--bp-text-3xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-white-labeling-cta .bp-cta__text {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--bp-space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bp-white-labeling-cta .bp-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--bp-space-4);
    flex-wrap: wrap;
}

/* ==========================================================================
   INDUSTRY PAGE STYLES
   ========================================================================== */

/* Industry Grid */
.bp-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-8);
}

.bp-industry-card-lg {
    background-color: var(--bp-white);
    padding: var(--bp-space-8);
    border-radius: var(--bp-radius-xl);
    border: 1px solid var(--bp-gray-200);
    transition: all var(--bp-transition-normal);
}

.bp-industry-card-lg:hover {
    border-color: var(--bp-secondary);
    box-shadow: var(--bp-shadow-xl);
    transform: translateY(-4px);
}

.bp-industry-card-lg__header {
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
    margin-bottom: var(--bp-space-4);
}

.bp-industry-card-lg__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-lg);
    color: var(--bp-white);
}

.bp-industry-card-lg__icon svg {
    width: 32px;
    height: 32px;
}

.bp-industry-card-lg__title {
    font-size: var(--bp-text-xl);
    color: var(--bp-primary);
}

.bp-industry-card-lg__desc {
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-6);
    line-height: 1.7;
}

.bp-industry-card-lg__applications h4 {
    font-size: var(--bp-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bp-secondary);
    margin-bottom: var(--bp-space-3);
}

.bp-industry-card-lg__applications ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-2);
}

.bp-industry-card-lg__applications li {
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
}

.bp-industry-card-lg__applications li svg {
    width: 16px;
    height: 16px;
    color: var(--bp-secondary);
    flex-shrink: 0;
}

/* Certifications */
.bp-certifications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--bp-space-4);
}

.bp-certification-card {
    text-align: center;
    padding: var(--bp-space-6);
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    transition: all var(--bp-transition-normal);
}

.bp-certification-card:hover {
    box-shadow: var(--bp-shadow-lg);
    transform: translateY(-4px);
}

.bp-certification-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-full);
    color: var(--bp-white);
    margin: 0 auto var(--bp-space-4);
}

.bp-certification-card__icon svg {
    width: 28px;
    height: 28px;
}

.bp-certification-card__name {
    font-size: var(--bp-text-sm);
    font-weight: 700;
    margin-bottom: var(--bp-space-1);
}

.bp-certification-card__desc {
    font-size: var(--bp-text-xs);
    color: var(--bp-gray-500);
}

/* Industry Why Section */
.bp-industry-why__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--bp-space-16);
    align-items: center;
}

.bp-industry-why__content h2 {
    font-size: var(--bp-text-3xl);
    margin-bottom: var(--bp-space-4);
}

.bp-industry-why__content > p {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-8);
    line-height: 1.8;
}

.bp-industry-why__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-industry-why__list li {
    display: flex;
    align-items: center;
    gap: var(--bp-space-3);
    padding: var(--bp-space-3) 0;
    font-size: var(--bp-text-base);
    color: var(--bp-gray-700);
}

.bp-industry-why__list li svg {
    width: 24px;
    height: 24px;
    color: var(--bp-secondary);
    flex-shrink: 0;
}

.bp-industry-why__image {
    display: flex;
    justify-content: center;
}

.bp-industry-why__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--bp-space-4);
    background: linear-gradient(135deg, var(--bp-gray-100), var(--bp-gray-50));
    border: 2px dashed var(--bp-gray-300);
    border-radius: var(--bp-radius-xl);
    color: var(--bp-gray-400);
}

.bp-industry-why__placeholder svg {
    width: 80px;
    height: 80px;
}

/* Industry CTA */
.bp-industry-cta .bp-cta__inner {
    text-align: center;
}

.bp-industry-cta .bp-cta__title {
    font-size: var(--bp-text-3xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-industry-cta .bp-cta__text {
    font-size: var(--bp-text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--bp-space-8);
}

.bp-industry-cta .bp-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--bp-space-4);
    flex-wrap: wrap;
}

/* ==========================================================================
   TRADING PAGE STYLES
   ========================================================================== */

/* Trading Grid */
.bp-trading-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bp-space-8);
}

.bp-trading-card {
    background-color: var(--bp-white);
    padding: var(--bp-space-8);
    border-radius: var(--bp-radius-xl);
    border: 1px solid var(--bp-gray-200);
    transition: all var(--bp-transition-normal);
}

.bp-trading-card:hover {
    border-color: var(--bp-secondary);
    box-shadow: var(--bp-shadow-xl);
    transform: translateY(-4px);
}

.bp-trading-card__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-6);
}

.bp-trading-card__icon svg {
    width: 36px;
    height: 36px;
}

.bp-trading-card__title {
    font-size: var(--bp-text-xl);
    margin-bottom: var(--bp-space-4);
}

.bp-trading-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-trading-card__list li {
    display: flex;
    align-items: center;
    gap: var(--bp-space-3);
    padding: var(--bp-space-3) 0;
    font-size: var(--bp-text-base);
    color: var(--bp-gray-600);
    border-bottom: 1px solid var(--bp-gray-100);
}

.bp-trading-card__list li:last-child {
    border-bottom: none;
}

.bp-trading-card__list li svg {
    width: 16px;
    height: 16px;
    color: var(--bp-secondary);
    flex-shrink: 0;
}

/* Global Coverage */
.bp-global-coverage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-12);
    align-items: center;
    margin-bottom: var(--bp-space-12);
}

.bp-global-coverage__content h2 {
    font-size: var(--bp-text-3xl);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-global-coverage__content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--bp-text-lg);
}

.bp-global-coverage__stats {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-6);
}

.bp-global-stat {
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
    padding: var(--bp-space-4);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--bp-radius-lg);
}

.bp-global-stat__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--bp-radius-lg);
    color: var(--bp-white);
}

.bp-global-stat__icon svg {
    width: 24px;
    height: 24px;
}

.bp-global-stat__number {
    display: block;
    font-size: var(--bp-text-2xl);
    font-weight: 800;
    color: var(--bp-white);
}

.bp-global-stat__label {
    font-size: var(--bp-text-sm);
    color: rgba(255, 255, 255, 0.75);
}

/* Markets Grid */
.bp-markets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-6);
}

.bp-markets-box {
    padding: var(--bp-space-6);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--bp-radius-lg);
}

.bp-markets-box h4 {
    font-size: var(--bp-text-lg);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-markets-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-markets-box li {
    padding: var(--bp-space-2) 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--bp-text-sm);
}

/* Trading Services */
.bp-service-item {
    padding: var(--bp-space-8);
    background-color: var(--bp-gray-50);
    border-radius: var(--bp-radius-xl);
    transition: all var(--bp-transition-normal);
}

.bp-service-item:hover {
    background-color: var(--bp-white);
    box-shadow: var(--bp-shadow-lg);
    transform: translateY(-4px);
}

.bp-service-item__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-lg);
    color: var(--bp-white);
    margin-bottom: var(--bp-space-4);
}

.bp-service-item__icon svg {
    width: 28px;
    height: 28px;
}

.bp-service-item__title {
    font-size: var(--bp-text-lg);
    margin-bottom: var(--bp-space-3);
}

.bp-service-item__desc {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
    line-height: 1.7;
}

/* Trading Why Section */
.bp-trading-why__grid {
    max-width: 900px;
    margin: 0 auto;
}

.bp-trading-why__content h2 {
    font-size: var(--bp-text-3xl);
    margin-bottom: var(--bp-space-4);
}

.bp-trading-why__content > p {
    font-size: var(--bp-text-lg);
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-8);
}

.bp-trading-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-6);
}

.bp-trading-benefit {
    display: flex;
    gap: var(--bp-space-4);
    padding: var(--bp-space-6);
    background-color: var(--bp-white);
    border-radius: var(--bp-radius-lg);
}

.bp-trading-benefit__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
    border-radius: var(--bp-radius-lg);
    color: var(--bp-white);
    font-weight: 700;
    font-size: var(--bp-text-sm);
}

.bp-trading-benefit__content h5 {
    font-size: var(--bp-text-base);
    margin-bottom: var(--bp-space-2);
}

.bp-trading-benefit__content p {
    font-size: var(--bp-text-sm);
    color: var(--bp-gray-600);
}

/* Trading CTA */
.bp-trading-cta {
    background: linear-gradient(135deg, var(--bp-secondary-light), var(--bp-secondary));
}

.bp-cta__inner--centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bp-trading-cta .bp-cta__title {
    color: var(--bp-white);
    font-size: var(--bp-text-3xl);
    margin-bottom: var(--bp-space-4);
}

.bp-trading-cta .bp-cta__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--bp-text-lg);
    margin-bottom: var(--bp-space-8);
}

.bp-trading-cta .bp-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--bp-space-4);
    flex-wrap: wrap;
}

/* Light outline button variant */
.bp-btn--light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--bp-white);
}

.bp-btn--light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bp-white);
}

/* ==========================================================================
   PARTNERSHIP PAGE STYLES
   ========================================================================== */

/* Partnership Hero */
.bp-partnership-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--bp-white);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.bp-partnership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.bp-partnership-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bp-partnership-hero__background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    animation: subtlePulse 10s ease-in-out infinite;
}

.bp-partnership-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bp-partnership-hero .bp-container {
    position: relative;
    z-index: 2;
}

.bp-partnership-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.bp-partnership-hero__title {
    font-family: var(--bp-font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.bp-highlight-gradient {
    background: linear-gradient(135deg, var(--bp-teal), var(--bp-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(20, 184, 166, 0.4));
}

.bp-partnership-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.bp-partnership-hero__badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.bp-hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bp-partnership-hero__cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.bp-partnership-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.bp-partnership-stat-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bp-partnership-stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: var(--bp-secondary);
}

.bp-partnership-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bp-secondary), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    font-family: var(--bp-font-heading);
    line-height: 1;
}

.bp-partnership-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Trust Bar */
.bp-trust-bar {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 0;
    border-bottom: 1px solid var(--bp-gray-200);
    position: relative;
}

.bp-trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bp-secondary), transparent);
}

.bp-trust-bar__text {
    font-size: var(--bp-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-6);
    font-weight: 700;
    text-align: center;
}

.bp-trust-bar__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.bp-trust-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    font-weight: 600;
    color: var(--bp-gray-800);
}

.bp-trust-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-accent));
    transition: width 0.3s ease;
}

.bp-trust-item:hover::after {
    width: 60%;
}

.bp-trust-item strong {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    font-family: var(--bp-font-heading);
    line-height: 1;
}

.bp-trust-item span {
    font-size: 0.95rem;
    color: var(--bp-gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Partnership Tiers */
.bp-partnership-tiers {
    padding: var(--bp-space-20) 0;
    background: linear-gradient(180deg, white 0%, var(--bp-gray-50) 100%);
}

.bp-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.bp-tier-card {
    background-color: var(--bp-white);
    padding: 50px 40px;
    border-radius: 24px;
    border: 2px solid var(--bp-gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bp-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bp-tier-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--bp-secondary);
}

.bp-tier-card:hover::before {
    transform: scaleX(1);
}

.bp-tier-card--featured {
    border-color: var(--bp-secondary);
    border-width: 3px;
    transform: scale(1.05);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

.bp-tier-card--featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.bp-tier-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--bp-gray-100);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--bp-gray-700);
}

.bp-tier-badge--featured {
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-accent));
    color: var(--bp-white);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.bp-tier-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-primary);
    margin-bottom: 12px;
    font-family: var(--bp-font-heading);
}

.bp-tier-description {
    color: var(--bp-gray-600);
    margin-bottom: var(--bp-space-8);
    line-height: 1.7;
}

.bp-tier-investment {
    text-align: center;
    padding: 24px 20px;
    background: linear-gradient(135deg, var(--bp-gray-50), #f8fafc);
    border-radius: 16px;
    margin: 24px 0;
    border: 1px solid var(--bp-gray-200);
}

.bp-investment-label {
    font-size: 0.8rem;
    color: var(--bp-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.bp-investment-amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--bp-font-heading);
    line-height: 1;
}

.bp-tier-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.bp-tier-features li {
    padding: 14px 0 14px 40px;
    position: relative;
    color: var(--bp-gray-700);
    line-height: 1.7;
    border-bottom: 1px solid var(--bp-gray-100);
    font-size: 0.95rem;
}

.bp-tier-features li:last-child {
    border-bottom: none;
}

.bp-tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: var(--bp-secondary);
    color: var(--bp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.bp-tier-cta {
    width: 100%;
    padding: 16px;
    background-color: var(--bp-primary);
    color: var(--bp-white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.bp-tier-cta:hover {
    background-color: var(--bp-secondary);
    transform: translateY(-2px);
    color: var(--bp-white);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.bp-tier-card--featured .bp-tier-cta {
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-accent));
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

/* Partnership Benefits */
.bp-partnership-benefits {
    padding: var(--bp-space-20) 0;
    background-color: var(--bp-primary);
    color: var(--bp-white);
}

.bp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.bp-benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bp-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bp-benefit-item:hover::before {
    opacity: 1;
}

.bp-benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bp-benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.bp-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bp-white);
    font-family: var(--bp-font-heading);
    position: relative;
    z-index: 1;
}

.bp-benefit-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Partnership Products */
.bp-partnership-products {
    padding: var(--bp-space-20) 0;
    background-color: var(--bp-white);
}

/* Process Timeline */
.bp-partnership-process {
    padding: var(--bp-space-20) 0;
    background: linear-gradient(180deg, var(--bp-gray-50) 0%, white 100%);
}

.bp-process-timeline {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
    padding: 40px 0;
}

.bp-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--bp-secondary), var(--bp-accent), var(--bp-secondary));
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.bp-process-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.bp-process-item:nth-child(1) { animation-delay: 0.1s; }
.bp-process-item:nth-child(2) { animation-delay: 0.2s; }
.bp-process-item:nth-child(3) { animation-delay: 0.3s; }
.bp-process-item:nth-child(4) { animation-delay: 0.4s; }
.bp-process-item:nth-child(5) { animation-delay: 0.5s; }

.bp-process-item--reverse .bp-process-content {
    order: 2;
}

.bp-process-item--reverse .bp-process-number {
    order: 1;
}

.bp-process-content {
    background-color: var(--bp-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--bp-gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bp-process-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--bp-secondary), transparent);
}

.bp-process-item:not(.bp-process-item--reverse) .bp-process-content::before {
    right: -42px;
    transform: translateY(-50%);
}

.bp-process-item--reverse .bp-process-content::before {
    left: -42px;
    transform: translateY(-50%) rotate(180deg);
}

.bp-process-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--bp-secondary);
}

.bp-process-step-label {
    font-size: 0.8rem;
    color: var(--bp-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.bp-process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bp-primary);
    margin-bottom: 16px;
    font-family: var(--bp-font-heading);
}

.bp-process-step-description {
    color: var(--bp-gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

.bp-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-number-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-accent));
    color: var(--bp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
    border: 5px solid var(--bp-white);
    font-family: var(--bp-font-heading);
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Partnership Final CTA */
.bp-partnership-final-cta {
    padding: var(--bp-space-20) 0;
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-secondary));
    text-align: center;
    color: var(--bp-white);
}

.bp-partnership-final-cta .bp-cta__title {
    font-family: var(--bp-font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: var(--bp-space-6);
    font-weight: 800;
}

.bp-partnership-final-cta .bp-cta__text {
    font-size: var(--bp-text-xl);
    margin-bottom: var(--bp-space-12);
    opacity: 0.9;
}

.bp-partnership-final-cta .bp-cta__contact {
    margin-top: var(--bp-space-10);
    font-size: var(--bp-text-base);
    opacity: 0.8;
}

.bp-section--gradient {
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-secondary));
}

/* ==========================================================================
   RESPONSIVE - WHITE LABELING, INDUSTRY, TRADING, PARTNERSHIP
   ========================================================================== */

@media (max-width: 1024px) {
    .bp-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--bp-space-8);
    }
    
    .bp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bp-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-service-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-facility-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-industry-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bp-industry-why__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-industry-why__image {
        order: -1;
    }
    
    .bp-trading-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-global-coverage__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Partnership responsive */
    .bp-partnership-hero__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .bp-partnership-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .bp-tiers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bp-tier-card--featured {
        transform: scale(1);
    }
    
    .bp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .bp-process-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }
    
    .bp-process-content::before {
        display: none;
    }
    
    .bp-process-timeline::before {
        left: 40px;
    }
    
    .bp-process-item--reverse .bp-process-content {
        order: 1;
    }
    
    .bp-process-item--reverse .bp-process-number {
        order: 2;
    }
}

@media (max-width: 768px) {
    .bp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--bp-space-6);
    }
    
    .bp-products-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-tabs-section {
        position: static;
    }
    
    .bp-tabs-nav {
        gap: var(--bp-space-2);
    }
    
    .bp-tabs-nav__btn {
        padding: var(--bp-space-3) var(--bp-space-4);
        font-size: var(--bp-text-sm);
    }
    
    .bp-tabs-nav__full {
        display: none;
    }
    
    .bp-tabs-nav__short {
        display: inline;
    }
    
    .bp-tab-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bp-tab-header__icon {
        margin: 0 auto;
    }
    
    .bp-service-grid,
    .bp-service-grid--4 {
        grid-template-columns: 1fr;
    }
    
    .bp-highlight-box__grid {
        grid-template-columns: 1fr;
    }
    
    .bp-process-steps {
        grid-template-columns: 1fr;
    }
    
    .bp-facility-stats {
        grid-template-columns: 1fr;
    }
    
    .bp-certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-industry-card-lg__applications ul {
        grid-template-columns: 1fr;
    }
    
    .bp-markets-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-services-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-trading-benefits {
        grid-template-columns: 1fr;
    }
    
    /* Partnership responsive */
    .bp-partnership-hero {
        padding: var(--bp-space-15) 0 var(--bp-space-12);
        min-height: auto;
    }
    
    .bp-partnership-hero__title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .bp-partnership-hero__cta {
        flex-direction: column;
    }
    
    .bp-partnership-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bp-trust-bar__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .bp-process-item {
        margin-bottom: 60px;
    }
    
    .bp-number-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .bp-trust-bar__items {
        gap: var(--bp-space-4);
    }
    
    /* Partnership 480px */
    .bp-trust-item strong {
        font-size: 2rem;
    }
    
    .bp-tier-card {
        padding: 35px 25px;
    }
    
    .bp-benefit-item {
        padding: 30px 20px;
    }
    
    .bp-process-content {
        padding: 30px 25px;
    }
    
    .bp-process-timeline::before {
        left: 30px;
    }
    
    .bp-number-circle {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .bp-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--bp-space-4);
    }
    
    .bp-stat-item {
        padding: var(--bp-space-4);
    }
    
    .bp-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: var(--bp-space-2);
        -webkit-overflow-scrolling: touch;
    }
    
    .bp-tabs-nav__btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .bp-certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-section-title {
        font-size: var(--bp-text-2xl);
    }
    
    .bp-partnership-cta__title {
        font-size: var(--bp-text-2xl);
    }
    
    /* Partnership responsive */
    .bp-partnership-hero__badges {
        flex-direction: column;
    }
    
    .bp-trust-bar__items {
        flex-direction: column;
        gap: var(--bp-space-3);
    }
    
    .bp-trust-item {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Downloads Section
   ========================================================================== */

.bp-product-downloads {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.bp-downloads__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--bp-space-6);
    margin-top: var(--bp-space-6);
}

.bp-downloads__item {
    display: flex;
    align-items: center;
    gap: var(--bp-space-4);
    padding: var(--bp-space-4);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--bp-radius-md);
    text-decoration: none;
    color: var(--bp-text);
    transition: all 0.3s ease;
}

.bp-downloads__item:hover {
    border-color: var(--bp-teal);
    background: rgba(20, 184, 166, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.bp-downloads__item svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--bp-teal);
}

.bp-downloads__info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--bp-text-dark);
}

.bp-downloads__info p {
    font-size: 0.875rem;
    margin: 4px 0 0;
    color: var(--bp-text-light);
}

@media (max-width: 768px) {
    .bp-downloads__list {
        grid-template-columns: 1fr;
    }
}
