/*
 * CruxOne - Professional SaaS Book Publishing Platform
 * Homepage CSS - Matching Dashboard Design System
 * Design: Monochrome (Black + White)
 * Version: 5.0
 */

/* ============================================
   1. NUCLEAR OVERRIDES - Kill Template Styles
   ============================================ */

/* Kill ALL template backgrounds and decorative elements */
.theme-bg,
.bg-theme,
.bg-theme-secondary,
.bg-gradient,
.theme-shadow,
[class*="theme-bg"],
[class*="bg-theme"],
[class*="shadow-theme"],
.pattern-layer,
.pattern-layer-one,
.pattern-layer-two,
.auto-container::before,
.auto-container::after,
section::before,
section::after {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

/* Force Inter font (preserve icon fonts) */
*:not([class*="fa"]):not([class*="icon"]):not([class*="icomoon"]):not([class*="bi-"]) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Kill template animations only */
.wow, [class*="float-bob"], .animated:not([class*="bp-"]) {
    animation: none !important;
    animation-delay: 0s !important;
}

/* Kill preloader */
.preloader,
#preloader,
.loader-wrap,
.loading {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Override template CSS variables */
:root {
    --theme-color: #0f0f0f !important;
    --theme-color-dark: #000000 !important;
    --theme-color-light: #2a2a2a !important;
}

/* Kill template button pseudo-elements */
.theme-btn::before,
.theme-btn::after,
.btn-style-one::before,
.btn-style-one::after,
.btn-style-two::before,
.btn-style-two::after {
    display: none !important;
    content: none !important;
}

/* Kill template color backgrounds */
[style*="#FBF7FF"],
[style*="#fbf7ff"],
[style*="251, 247, 255"],
.lavender-bg,
.light-purple-bg {
    background-color: #ffffff !important;
}

/* Kill float-bob animations */
@keyframes float-bob { from, to { transform: none !important; } }
@keyframes float-bob-x { from, to { transform: none !important; } }
@keyframes float-bob-y { from, to { transform: none !important; } }

.float-bob,
.float-bob-x,
.float-bob-y,
[class*="float-bob"] {
    animation: none !important;
}


/* ============================================
   2. DESIGN TOKENS (Matching Dashboard)
   ============================================ */

:root {
    /* Primary Colors - Monochrome */
    --bp-primary: #0f0f0f;
    --bp-primary-dark: #000000;
    --bp-primary-light: #2a2a2a;
    --bp-primary-bg: rgba(0, 0, 0, 0.04);

    /* Accent - Blue (used sparingly) */
    --bp-accent: #2563eb;
    --bp-accent-bg: rgba(59, 130, 246, 0.08);

    /* Gray Scale (matching dashboard) */
    --bp-gray-950: #030712;
    --bp-gray-900: #0f172a;
    --bp-gray-800: #1e293b;
    --bp-gray-700: #334155;
    --bp-gray-600: #475569;
    --bp-gray-500: #64748b;
    --bp-gray-400: #94a3b8;
    --bp-gray-300: #cbd5e1;
    --bp-gray-200: #e5e7eb;
    --bp-gray-100: #f3f4f6;
    --bp-gray-50: #f9fafb;

    /* Semantic Colors */
    --bp-success: #22c55e;
    --bp-warning: #f59e0b;
    --bp-danger: #ef4444;

    /* Text */
    --bp-text: #0f0f0f;
    --bp-text-muted: #666666;
    --bp-text-light: #94a3b8;

    /* Borders */
    --bp-border: #e5e7eb;
    --bp-border-light: #f3f4f6;

    /* Radius (matching dashboard) */
    --bp-radius: 12px;
    --bp-radius-sm: 8px;
    --bp-radius-lg: 16px;
    --bp-radius-xl: 20px;

    /* Shadows (matching dashboard) */
    --bp-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --bp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
    --bp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --bp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --bp-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);

    /* Transition (matching dashboard) */
    --bp-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    /* Section Padding */
    --bp-section-padding: 100px 0;
}


/* ============================================
   3. GLOBAL BASE STYLES
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bp-text);
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

::selection {
    background: var(--bp-primary);
    color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--bp-text);
    margin: 0;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(36px, 4vw, 50px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 17px;
    font-weight: 600;
}

p {
    margin: 0 0 16px;
    line-height: 1.7;
    color: var(--bp-text-muted);
}

a {
    color: var(--bp-text);
    text-decoration: none;
    transition: var(--bp-transition);
}

a:hover {
    color: var(--bp-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.auto-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}


/* ============================================
   4. GLASSMORPHISM NAVBAR
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.main-header .main-box,
.main-header .header-upper {
    background: transparent !important;
    padding: 18px 0;
    transition: var(--bp-transition);
}

.main-header.scroll-active {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bp-border);
    box-shadow: var(--bp-shadow-xs);
}

.main-header.scroll-active .main-box,
.main-header.scroll-active .header-upper {
    padding: 12px 0;
}

/* Logo */
.main-header .logo img {
    max-height: 32px;
    width: auto;
    transition: var(--bp-transition);
}

/* Navigation Links */
.main-menu .navigation > li {
    position: relative;
    margin: 0 18px;
}

.main-menu .navigation > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--bp-text-muted) !important;
    padding: 8px 0;
    position: relative;
    transition: var(--bp-transition);
}

.main-menu .navigation > li:not(.bp-mega-dropdown) > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bp-primary);
    transition: var(--bp-transition);
    border-radius: 1px;
}

.main-menu .navigation > li > a:hover,
.main-menu .navigation > li.current > a {
    color: var(--bp-text) !important;
}

.main-menu .navigation > li:not(.bp-mega-dropdown) > a:hover::after,
.main-menu .navigation > li:not(.bp-mega-dropdown).current > a::after {
    width: 100%;
}

/* CTA Button in Nav */
.main-header .btn-box a,
.main-header .start_trils_btn .theme-btn,
.main-header .header-link {
    background: var(--bp-primary) !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: var(--bp-radius-sm) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    transition: var(--bp-transition);
    border: none !important;
    letter-spacing: -0.01em;
}

.main-header .btn-box a:hover,
.main-header .start_trils_btn .theme-btn:hover,
.main-header .header-link:hover {
    background: var(--bp-primary-light) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px);
}

/* Force nav CTA visible on tablets */
.start_trils_btn {
    display: block !important;
}


/* ============================================
   5. HERO SECTION
   ============================================ */

.bp-hero {
    padding: 150px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.bp-hero-inner {
    display: flex;
    align-items: center;
    gap: 72px;
}

.bp-hero-content {
    flex: 1;
    max-width: 540px;
}

/* Hero Badge */
.bp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bp-gray-50);
    border: 1px solid var(--bp-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bp-text-muted);
    margin-bottom: 24px;
    letter-spacing: 0;
}

.bp-hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--bp-success);
    border-radius: 50%;
    animation: bp-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes bp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

/* Hero Title */
.bp-hero-content h1 {
    color: var(--bp-text);
    margin-bottom: 20px;
}

.bp-highlight {
    color: var(--bp-accent);
    -webkit-text-fill-color: var(--bp-accent);
}

/* Hero Description */
.bp-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--bp-text-muted);
    max-width: 460px;
    margin-bottom: 32px;
}

/* Hero CTA Group */
.bp-hero-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Primary Button (Black) */
.bp-btn-primary {
    background: var(--bp-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--bp-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--bp-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.bp-btn-primary:hover {
    background: var(--bp-primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    color: #ffffff;
}

/* Secondary Button (Outline) */
.bp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bp-text);
    border: 1px solid var(--bp-border);
    background: #ffffff;
    border-radius: var(--bp-radius-sm);
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    letter-spacing: -0.01em;
}

.bp-btn-secondary:hover {
    border-color: var(--bp-primary);
    color: var(--bp-text);
    box-shadow: var(--bp-shadow-sm);
}

.bp-btn-secondary svg {
    width: 14px;
    height: 14px;
}

/* Social Proof */
.bp-hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
}

.bp-avatar-stack {
    display: flex;
    align-items: center;
}

.bp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid #ffffff;
    margin-left: -6px;
    transition: var(--bp-transition);
}

.bp-avatar:first-child {
    margin-left: 0;
}

.bp-avatar:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 10;
}

.bp-hero-social-text {
    font-size: 13px;
    color: var(--bp-text-muted);
    line-height: 1.5;
}

.bp-hero-social-text strong {
    color: var(--bp-text);
    font-weight: 600;
}

.bp-stars {
    color: #F59E0B;
    font-size: 12px;
    letter-spacing: 1px;
}

.bp-rating-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--bp-text);
    margin-left: 3px;
}

/* Hero Visual */
.bp-hero-visual {
    flex: 1;
    position: relative;
}

.bp-hero-img-wrap {
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow-lg);
    border: 1px solid var(--bp-border);
    position: relative;
}

.bp-hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Cards */
.bp-hero-float {
    position: absolute;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: var(--bp-radius);
    box-shadow: var(--bp-shadow-md);
    border: 1px solid var(--bp-border);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bp-float 4s ease-in-out infinite;
}

.bp-hero-float-1 {
    top: 12%;
    right: -16px;
    animation-delay: 0s;
}

.bp-hero-float-2 {
    bottom: 18%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes bp-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.bp-hero-float strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--bp-text);
    display: block;
}

.bp-hero-float span {
    font-size: 11px;
    color: var(--bp-text-muted);
    display: block;
}

.bp-hero-float svg {
    flex-shrink: 0;
}


/* ============================================
   6. LOGO CLOUD SECTION
   ============================================ */

.bp-logos {
    padding: 48px 0;
    border-bottom: 1px solid var(--bp-border);
    background: #ffffff;
    overflow: hidden;
}

.bp-logos-label {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-text);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

/* Marquee container */
.bp-logos-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.bp-logos-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: bp-marquee 25s linear infinite;
}

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

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

.bp-logo-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-gray-300);
    letter-spacing: -0.02em;
    transition: var(--bp-transition);
    user-select: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bp-logo-item:hover {
    color: var(--bp-text);
}

.bp-logo-item svg {
    flex-shrink: 0;
    stroke: var(--bp-gray-300);
    transition: var(--bp-transition);
}

.bp-logo-item:hover svg {
    stroke: var(--bp-text);
}


/* ============================================
   7. SECTION HEADER
   ============================================ */

.bp-section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.bp-label {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: var(--bp-primary-bg);
    color: var(--bp-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    border: 1px solid var(--bp-border);
    margin-bottom: 16px;
}

.bp-section-header h2 {
    color: var(--bp-text);
    margin-top: 16px;
    margin-bottom: 0;
}

.bp-section-header p {
    font-size: 16px;
    color: var(--bp-text-muted);
    margin-top: 14px;
    margin-bottom: 0;
    line-height: 1.7;
}


/* ============================================
   8. FEATURES SECTION
   ============================================ */

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

/* Support both singular and plural class names */
.bp-feature-grid,
.bp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Override Bootstrap row when used with our grid class */
.row.bp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
}

.row.bp-features-grid > [class*="col-"] {
    max-width: 100%;
    padding: 0;
    flex: none;
    width: 100%;
}

.bp-feature-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 36px 28px;
    transition: var(--bp-transition);
    position: relative;
    height: 100%;
}

.bp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bp-shadow-lg);
    border-color: var(--bp-primary);
}

.bp-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bp-primary-bg);
    border-radius: 10px;
    color: var(--bp-text);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--bp-transition);
}

.bp-feature-icon svg {
    stroke: var(--bp-text);
}

.bp-feature-card:hover .bp-feature-icon {
    background: var(--bp-primary);
    color: #ffffff;
}

.bp-feature-card:hover .bp-feature-icon svg {
    stroke: #ffffff;
}

.bp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 10px;
}

.bp-feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bp-text-muted);
    margin: 0;
}


/* ============================================
   9. ABOUT SECTION
   ============================================ */

.bp-about {
    padding: var(--bp-section-padding);
    background: #ffffff;
}

/* Support Bootstrap row layout in about section - BS3 uses floats, force flex */
.bp-about .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    gap: 0;
}

.bp-about-content {
    padding-right: 40px;
}

.bp-about-content h2 {
    color: var(--bp-text);
    margin-bottom: 16px;
}

.bp-about-content > p {
    font-size: 15px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.bp-about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
}

.bp-about-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bp-gray-50);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    transition: var(--bp-transition);
}

.bp-about-item:hover {
    border-color: var(--bp-primary);
    background: #ffffff;
    box-shadow: var(--bp-shadow-sm);
}

.bp-about-num {
    min-width: 40px;
    height: 40px;
    background: var(--bp-primary);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.bp-about-item > div:last-child strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--bp-text);
    display: block;
    margin-bottom: 2px;
}

.bp-about-item > div:last-child span {
    font-size: 13px;
    color: var(--bp-text-muted);
    line-height: 1.5;
}

/* Stats Grid */
.bp-about .col-lg-6:last-child {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100%;
}

.bp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    align-self: center;
    margin: auto 0;
}

.bp-stat-card {
    background: var(--bp-gray-50);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--bp-transition);
}

.bp-stat-card:hover {
    border-color: var(--bp-primary);
    background: #ffffff;
    box-shadow: var(--bp-shadow-sm);
}

.bp-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--bp-text);
    letter-spacing: -0.04em;
    line-height: 1;
}

.bp-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--bp-text-muted);
    margin-top: 6px;
}


/* ============================================
   10. SERVICES SECTION
   ============================================ */

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

/* Support both singular and plural */
.bp-service-grid,
.bp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.row.bp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
}

.row.bp-services-grid > [class*="col-"] {
    max-width: 100%;
    padding: 0;
    flex: none;
    width: 100%;
}

.bp-service-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 28px 24px;
    transition: var(--bp-transition);
    height: 100%;
}

.bp-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bp-shadow-md);
    border-color: var(--bp-primary);
}

.bp-service-icon {
    width: 42px;
    height: 42px;
    background: var(--bp-primary-bg);
    border-radius: 10px;
    color: var(--bp-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bp-transition);
}

.bp-service-icon svg {
    stroke: var(--bp-text);
}

.bp-service-card:hover .bp-service-icon {
    background: var(--bp-primary);
    color: #ffffff;
}

.bp-service-card:hover .bp-service-icon svg {
    stroke: #ffffff;
}

.bp-service-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bp-text);
    margin-top: 18px;
    margin-bottom: 8px;
}

.bp-service-card p {
    font-size: 13px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   11. HOW IT WORKS SECTION
   ============================================ */

.bp-how {
    padding: var(--bp-section-padding);
    background: #ffffff;
}

.bp-how-grid,
.row.bp-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 0;
}

.row.bp-how-grid > [class*="col-"] {
    max-width: 100%;
    padding: 0;
    flex: none;
    width: 100%;
}

.bp-how-card {
    text-align: center;
    padding: 40px 28px;
    border: 1px solid transparent;
    border-radius: var(--bp-radius);
    transition: var(--bp-transition);
}

.bp-how-card:hover {
    border-color: var(--bp-border);
    background: var(--bp-gray-50);
}

.bp-how-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--bp-text);
    opacity: 0.1;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 20px;
}

.bp-how-card:hover .bp-how-number {
    opacity: 0.2;
}

.bp-how-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 10px;
}

.bp-how-card p {
    font-size: 14px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   12. TESTIMONIALS SECTION
   ============================================ */

.bp-testimonials {
    padding: var(--bp-section-padding);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #0f172a 70%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative glow */
.bp-testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bp-testimonials .bp-section-header h2 {
    color: #ffffff;
}

.bp-testimonials .bp-section-header p {
    color: var(--bp-gray-400);
}

.bp-testimonials .bp-label {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Support both singular and plural */
.bp-testimonial-grid,
.bp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.row.bp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
}

.row.bp-testimonials-grid > [class*="col-"] {
    max-width: 100%;
    padding: 0;
    flex: none;
    width: 100%;
}

.bp-testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bp-radius);
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--bp-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bp-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.bp-testimonial-stars {
    color: #FBBF24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.bp-testimonial-card > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 0;
    flex: 1;
}

.bp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bp-avatar-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.bp-testimonial-author > div strong {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 1px;
}

.bp-testimonial-author > div span {
    font-size: 12px;
    color: var(--bp-gray-400);
}


/* ============================================
   13. FAQ SECTION
   ============================================ */

.bp-faq {
    padding: var(--bp-section-padding);
    background: #ffffff;
}

.bp-faq-header {
    text-align: left;
    margin-bottom: 0;
}

.bp-faq-header h2 {
    color: var(--bp-text);
    margin-bottom: 14px;
}

.bp-faq-header p {
    font-size: 15px;
    color: var(--bp-text-muted);
    margin: 0;
}

.bp-faq-header p a {
    color: var(--bp-accent);
    font-weight: 500;
}

.bp-faq-header p a:hover {
    text-decoration: underline;
}

.bp-faq-list {
    max-width: 100%;
}

.bp-faq-item {
    background: var(--bp-gray-50);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--bp-transition);
}

.bp-faq-q {
    padding: 18px 52px 18px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--bp-text);
    position: relative;
    user-select: none;
    transition: var(--bp-transition);
}

.bp-faq-q::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--bp-text-muted);
    transition: var(--bp-transition);
    font-weight: 300;
}

.bp-faq-q:hover {
    color: var(--bp-primary);
}

.bp-faq-open {
    border-color: var(--bp-primary);
    background: #ffffff;
    box-shadow: var(--bp-shadow-sm);
}

.bp-faq-open .bp-faq-q {
    color: var(--bp-primary);
}

.bp-faq-open .bp-faq-q::after {
    content: '\2212';
    color: var(--bp-primary);
}

.bp-faq-a {
    padding: 0 24px 20px;
    display: none;
}

.bp-faq-open .bp-faq-a {
    display: block;
}

.bp-faq-a p {
    font-size: 14px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   14. CTA SECTION
   ============================================ */

.bp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #0f172a 70%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.bp-cta::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bp-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bp-cta-inner h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.bp-cta-inner p {
    font-size: 16px;
    color: var(--bp-gray-400);
    margin-bottom: 36px;
}

/* CTA White Button */
.bp-btn-white,
.bp-btn-primary.bp-btn-white {
    background: #ffffff !important;
    color: var(--bp-text) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--bp-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--bp-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bp-btn-white:hover,
.bp-btn-primary.bp-btn-white:hover {
    background: var(--bp-gray-100) !important;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
    color: var(--bp-text) !important;
}

/* CTA Ghost Button */
.bp-btn-ghost,
.bp-btn-secondary.bp-btn-ghost {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: var(--bp-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    cursor: pointer;
    transition: var(--bp-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bp-btn-ghost:hover,
.bp-btn-secondary.bp-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.04) !important;
}


/* ============================================
   15. FOOTER
   ============================================ */

.bp-footer {
    background: var(--bp-gray-950);
    padding: 72px 0 0;
}

/* Footer uses Bootstrap row/col - style the inner components */
.bp-footer .row {
    gap: 0;
}

@media (min-width: 992px) {
    .bp-footer .col-lg-3:nth-child(2) {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .bp-footer .col-lg-1 {
        flex: 0 0 13%;
        max-width: 13%;
        margin-right: 20px;
    }
}

.bp-footer-brand img {
    max-height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.bp-footer-brand > p {
    font-size: 13px;
    color: var(--bp-gray-400);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 260px;
}

.bp-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.bp-social-icons a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--bp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-gray-400);
    font-size: 14px;
    transition: var(--bp-transition);
}

.bp-social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.bp-footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

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

.bp-footer-col li {
    margin-bottom: 8px;
}

.bp-footer-col a {
    font-size: 13px;
    color: var(--bp-gray-400);
    transition: var(--bp-transition);
    display: inline-block;
}

.bp-footer-col a:hover {
    color: #ffffff;
}

.bp-footer-col > p {
    font-size: 13px;
    color: var(--bp-gray-400);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Newsletter Form */
.bp-newsletter-form {
    display: flex;
    gap: 6px;
    margin-top: 14px;
}

.bp-newsletter-form input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bp-radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    color: #ffffff;
    transition: var(--bp-transition);
    min-width: 0;
}

.bp-newsletter-form input::placeholder {
    color: var(--bp-gray-500);
}

.bp-newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.bp-newsletter-form button {
    width: 40px;
    height: 40px;
    background: var(--bp-accent);
    color: #ffffff;
    border: none;
    border-radius: var(--bp-radius-sm);
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bp-newsletter-form button:hover {
    background: #3b82f6;
}

/* Footer Bottom */
.bp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin-top: 48px;
}

.bp-footer-bottom p {
    font-size: 12px;
    color: var(--bp-gray-500);
    text-align: center;
    margin: 0;
}


/* ============================================
   16. MOBILE MENU
   ============================================ */

.mobile-menu .menu-box {
    background: #ffffff;
}

.mobile-menu .close-btn {
    color: var(--bp-text);
}

.mobile-menu .navigation li a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--bp-text-muted);
    font-weight: 500;
}

.mobile-menu .navigation li a:hover,
.mobile-menu .navigation li.current a {
    color: var(--bp-text);
}


/* ============================================
   17. SCROLL TO TOP
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 40px;
    height: 40px;
    background: var(--bp-primary);
    color: #ffffff;
    border-radius: var(--bp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--bp-transition);
    z-index: 99;
    font-size: 14px;
}

.scroll-to-top.open-top {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--bp-primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}


/* ============================================
   18. RESPONSIVE
   ============================================ */

/* 1199px */
@media (max-width: 1199px) {
    :root {
        --bp-section-padding: 80px 0;
    }

    .bp-hero {
        padding: 130px 0 80px;
    }

    .bp-hero-inner {
        gap: 48px;
    }

    .bp-about-content {
        padding-right: 20px;
    }

    /* Keep nav CTA visible! */
    .start_trils_btn {
        display: block !important;
    }
}

/* 991px */
@media (max-width: 991px) {
    :root {
        --bp-section-padding: 72px 0;
    }

    .bp-hero {
        padding: 130px 0 72px;
    }

    .bp-hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .bp-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .bp-hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .bp-hero-cta-group {
        justify-content: center;
    }

    .bp-hero-social-proof {
        justify-content: center;
    }

    .bp-hero-float {
        display: none;
    }

    .bp-about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .row.bp-features-grid,
    .bp-feature-grid,
    .bp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .row.bp-services-grid,
    .bp-service-grid,
    .bp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .row.bp-how-grid,
    .bp-how-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .row.bp-testimonials-grid,
    .bp-testimonial-grid,
    .bp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 767px */
@media (max-width: 767px) {
    :root {
        --bp-section-padding: 56px 0;
    }

    .bp-hero {
        padding: 110px 0 56px;
    }

    .bp-hero-content h1 {
        font-size: clamp(28px, 7vw, 38px);
    }

    .bp-hero-content p {
        font-size: 15px;
    }

    .bp-section-header h2 {
        font-size: clamp(28px, 6vw, 36px);
    }

    .bp-section-header {
        margin-bottom: 40px;
    }

    .row.bp-features-grid,
    .bp-feature-grid,
    .bp-features-grid,
    .row.bp-services-grid,
    .bp-service-grid,
    .bp-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .row.bp-how-grid,
    .bp-how-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .row.bp-testimonials-grid,
    .bp-testimonial-grid,
    .bp-testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .bp-logo-item {
        font-size: 14px;
    }

    .bp-logos-label {
        font-size: 15px;
    }

    .bp-cta {
        padding: 64px 0;
    }

    .bp-cta-inner h2 {
        font-size: clamp(24px, 6vw, 36px);
    }

    .bp-how-card {
        padding: 24px 16px;
    }

    .bp-how-number {
        font-size: 42px;
    }

    .bp-faq-header {
        text-align: center;
        margin-bottom: 32px;
    }
}

/* 576px */
@media (max-width: 576px) {
    .bp-hero-content h1 {
        font-size: 26px;
    }

    .bp-hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .bp-btn-primary,
    .bp-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .bp-section-header h2 {
        font-size: 24px;
    }

    .bp-feature-card,
    .bp-service-card {
        padding: 24px 20px;
    }

    .bp-stat-number {
        font-size: 28px;
    }

    .bp-stats-grid {
        gap: 10px;
    }

    .bp-stat-card {
        padding: 20px 16px;
    }

    .bp-testimonial-card {
        padding: 24px 20px;
    }

    .bp-faq-q {
        font-size: 14px;
        padding: 16px 44px 16px 18px;
    }

    .bp-faq-q::after {
        right: 18px;
    }

    .bp-faq-a {
        padding: 0 18px 16px;
    }

    .bp-cta-inner h2 {
        font-size: 24px;
    }

    .bp-cta-inner p {
        font-size: 14px;
    }

    .bp-footer {
        padding: 48px 0 0;
    }

    .bp-newsletter-form {
        flex-direction: column;
    }

    .bp-newsletter-form button {
        width: 100%;
        height: 40px;
    }

    .bp-hero-social-proof {
        flex-direction: column;
        gap: 8px;
    }

    .bp-hero-social-text {
        text-align: center;
    }
}


/* ============================================
   19. FIREFOX FALLBACK
   ============================================ */

@supports not (backdrop-filter: blur(20px)) {
    .main-header.scroll-active {
        background: rgba(255, 255, 255, 0.98);
    }

    .bp-testimonial-card {
        background: rgba(255, 255, 255, 0.07);
    }
}


/* ============================================
   20. UTILITIES
   ============================================ */

.bp-highlight {
    color: var(--bp-accent);
    -webkit-text-fill-color: var(--bp-accent);
}

/* Focus styles */
*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--bp-primary);
    outline-offset: 2px;
}

/* Scroll reveal (JS-powered) */
.bp-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* ============================================
   21. OTHER PAGES - Template Section Overrides
   ============================================ */

/* Page Title / Breadcrumb (all inner pages) */
.page-title {
    padding: 140px 0 60px !important;
    background: var(--bp-gray-50) !important;
    border-bottom: 1px solid var(--bp-border);
}

.page-title h2,
.page-title h1 {
    color: var(--bp-text) !important;
    font-size: clamp(28px, 4vw, 40px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
}

.page-title .bread-crumb li,
.page-title .bread-crumb li a {
    color: var(--bp-text-muted) !important;
    font-size: 14px !important;
}

.page-title .bread-crumb li a:hover {
    color: var(--bp-text) !important;
}

/* Template section backgrounds */
.about-section-three,
.about-section,
.about-team-section,
.features-section,
.services-section,
.pricing-section,
.fun-facts-section,
.fun-facts-section-three,
.cta-section {
    background-color: #ffffff !important;
    background-image: none !important;
    padding: 80px 0 !important;
}

.features-section.two,
.fun-facts-section.two,
.fun-facts-section-three {
    background-color: var(--bp-gray-50) !important;
}

/* Template headings on all pages */
.heading_title,
.section_heading_title,
.section_heading_title_big,
.sec-title h2,
.sec-title h3 {
    color: var(--bp-text) !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
}

.sec-title .text,
.section_heading p,
.heading_description {
    color: var(--bp-text-muted) !important;
}

/* Template cards on other pages */
.inner-box {
    background: #ffffff !important;
    border: 1px solid var(--bp-border) !important;
    border-radius: var(--bp-radius) !important;
    box-shadow: var(--bp-shadow-xs) !important;
    transition: var(--bp-transition) !important;
    overflow: hidden;
}

.inner-box:hover {
    box-shadow: var(--bp-shadow-md) !important;
    border-color: var(--bp-primary) !important;
    transform: translateY(-3px);
}

/* Template service/feature block icons */
.inner-box .icon-box,
.inner-box .icon_box {
    color: var(--bp-text) !important;
}

/* Template counter numbers */
.count-text {
    color: var(--bp-text) !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
}

.count-text + .count-text-label,
.counter-title,
.count-outer p {
    color: var(--bp-text-muted) !important;
    font-size: 14px !important;
}

/* Template team section */
.team-block .inner-box {
    text-align: center;
    padding: 28px 20px !important;
}

/* Contact form on contact page */
.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-section .form-group select {
    border: 1px solid var(--bp-border) !important;
    border-radius: var(--bp-radius-sm) !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    background: #ffffff !important;
    color: var(--bp-text) !important;
    transition: var(--bp-transition) !important;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    border-color: var(--bp-primary) !important;
    box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.06) !important;
    outline: none !important;
}

/* Info blocks on contact page */
.info-block .inner-box {
    padding: 32px 24px !important;
}

/* CTA section on all inner pages */
.bp-cta-enhanced,
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #0f172a 70%, #0a0a0a 100%) !important;
}

.bp-cta-enhanced h2,
.bp-cta-enhanced .section_heading_title_big,
.cta-section h2 {
    color: #ffffff !important;
}

.bp-cta-enhanced p,
.cta-section p {
    color: var(--bp-gray-400) !important;
}

/* Pricing table clean-up */
.pricing-section .inner-box {
    padding: 36px 28px !important;
}

.pricing-section .price {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--bp-text) !important;
}

/* Integrations features blocks */
.features-block .inner-box {
    padding: 32px 24px !important;
    text-align: center;
}

/* FAQ accordion on faq page */
.accordion-box .accordion {
    background: var(--bp-gray-50) !important;
    border: 1px solid var(--bp-border) !important;
    border-radius: var(--bp-radius) !important;
    margin-bottom: 10px !important;
    overflow: hidden;
}

.accordion-box .acc-btn {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--bp-text) !important;
    padding: 18px 52px 18px 24px !important;
    cursor: pointer;
}

.accordion-box .acc-btn.active {
    color: var(--bp-primary) !important;
}

.accordion-box .acc-content {
    padding: 0 24px 20px !important;
}

.accordion-box .acc-content p {
    font-size: 14px !important;
    color: var(--bp-text-muted) !important;
}

/* Widget/footer section on other pages */
.widget-section {
    background: var(--bp-gray-950) !important;
    padding: 72px 0 0 !important;
}

.widget-section h5,
.widget-section h4 {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

.widget-section a,
.widget-section li,
.widget-section p {
    color: var(--bp-gray-400) !important;
    font-size: 13px !important;
}

.widget-section a:hover {
    color: #ffffff !important;
}

.widget-section .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px 0 !important;
}

.widget-section .footer-bottom p {
    font-size: 12px !important;
    color: var(--bp-gray-500) !important;
}

/* Fix row clearfix on template pages - neutralize negative margins */
.row.clearfix {
    margin-left: 0;
    margin-right: 0;
}

.row.clearfix > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

/* ============================================
   22. MEGA-DROPDOWN NAVIGATION
   ============================================ */

/* Make entire positioning chain static so mega-menu anchors to .outer-container */
.bp-mega-dropdown {
    position: static !important;
}
.main-header .main-menu,
.main-header .main-menu .navbar-collapse,
.main-header .main-menu .navigation {
    position: static !important;
}
/* Ensure no overflow clipping on header containers */
.main-header .menu-area,
.main-header .outer-container,
.main-header .main-box,
.main-header .container-fulid {
    overflow: visible !important;
}

.main-menu .navigation > li.bp-mega-dropdown > a::after {
    content: '' !important;
    display: inline-block !important;
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 4px solid currentColor !important;
    border-bottom: none !important;
    margin-left: 6px !important;
    vertical-align: middle !important;
    transition: var(--bp-transition) !important;
    background: none !important;
    border-radius: 0 !important;
}

.main-menu .navigation > li.bp-mega-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.bp-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bp-border);
    border-top: 2px solid var(--bp-primary);
    border-radius: 0 0 var(--bp-radius) var(--bp-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 20px rgba(0,0,0,0.06);
    padding: 32px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    pointer-events: none;
}

.bp-mega-dropdown:hover .bp-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.bp-mega-col h6 {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bp-text-muted) !important;
    margin-bottom: 14px !important;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bp-border);
}

.bp-mega-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    position: static !important;
    display: block !important;
    width: auto !important;
}

.bp-mega-col ul li {
    margin-bottom: 2px;
    border: none !important;
    background: none !important;
}

.bp-mega-col ul li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 7px 10px !important;
    font-size: 13px !important;
    font-weight: 500;
    color: var(--bp-text) !important;
    background: none !important;
    border-radius: var(--bp-radius-sm);
    transition: var(--bp-transition);
    white-space: nowrap;
    line-height: 1.4 !important;
}

.bp-mega-col ul li a:hover {
    background: var(--bp-gray-50) !important;
    color: var(--bp-accent) !important;
}

.bp-mega-col ul li a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--bp-gray-400);
    transition: var(--bp-transition);
}

.bp-mega-col ul li a:hover svg {
    stroke: var(--bp-accent);
}

/* Mobile mega-dropdown */
.mobile-menu .bp-mobile-services-list {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 0;
}

.mobile-menu .bp-mobile-services-list li a {
    font-size: 13px;
    padding: 6px 0;
    display: block;
}

.mobile-menu .bp-mobile-cat-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bp-text-muted);
    padding: 10px 0 4px 16px;
    display: block;
}


/* ============================================
   23. SERVICE DETAIL PAGES
   ============================================ */

.bp-service-hero {
    padding: 140px 0 80px;
    background: var(--bp-gray-50);
    border-bottom: 1px solid var(--bp-border);
}

/* Enhanced page hero - two column with visual */
.bp-page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bp-page-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.bp-page-hero-visual .hero-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bp-page-hero-visual .hero-icon-main {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    background: #000;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.bp-page-hero-visual .hero-icon-main svg {
    color: #fff;
    stroke: #fff;
}

.bp-page-hero-visual .hero-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    z-index: 2;
    white-space: nowrap;
}

.bp-page-hero-visual .hero-float-card svg {
    flex-shrink: 0;
}

.bp-page-hero-visual .hero-float-card.top-right {
    top: 10px;
    right: 0;
}

.bp-page-hero-visual .hero-float-card.bottom-left {
    bottom: 20px;
    left: 0;
}

.bp-page-hero-visual .hero-float-card.top-left {
    top: 20px;
    left: 0;
}

.bp-page-hero-visual .hero-float-card.bottom-right {
    bottom: 10px;
    right: 0;
}

@media (max-width: 991px) {
    .bp-page-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bp-page-hero-visual {
        min-height: 240px;
    }
}

@media (max-width: 575px) {
    .bp-page-hero-visual {
        min-height: 200px;
    }
    .bp-page-hero-visual .hero-float-card {
        font-size: 11px;
        padding: 10px 14px;
    }
}

.bp-service-hero .bp-label {
    margin-bottom: 16px;
}

.bp-service-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--bp-text);
    margin-bottom: 16px;
}

.bp-service-hero p {
    font-size: 17px;
    color: var(--bp-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.bp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
}

.bp-breadcrumb a {
    color: var(--bp-text-muted);
}

.bp-breadcrumb a:hover {
    color: var(--bp-text);
}

.bp-breadcrumb span {
    color: var(--bp-gray-300);
}

.bp-breadcrumb .current {
    color: var(--bp-text);
    font-weight: 500;
}

/* Service hero content wrapper */
.bp-service-hero-content {
    max-width: 700px;
}

.bp-service-hero-content .bp-label {
    margin-bottom: 16px;
}

.bp-service-hero-content h1 {
    margin-bottom: 16px;
}

.bp-service-hero-content p {
    margin-bottom: 28px;
}

/* Theme button styling for service pages */
.bp-service-hero .theme-btn,
.bp-cta-section .theme-btn {
    background: var(--bp-primary) !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: var(--bp-radius-sm) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--bp-transition);
    border: none !important;
    letter-spacing: -0.01em;
}

.bp-service-hero .theme-btn:hover,
.bp-cta-section .theme-btn:hover {
    background: var(--bp-primary-light) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Service features grid */
.bp-service-features {
    padding: var(--bp-section-padding);
    background: #ffffff;
}

.bp-service-features .bp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Service features - Bootstrap row layout (4-col on lg) */
.bp-service-features .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -12px;
    margin-right: -12px;
}

.bp-service-features .row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

/* How It Works section (service pages use .bp-how-it-works) */
.bp-how-it-works,
.bp-service-how {
    padding: var(--bp-section-padding);
    background: var(--bp-gray-50);
}

/* Step cards (service pages use .bp-step-card) */
.bp-step-card {
    text-align: center;
    padding: 40px 28px;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    transition: var(--bp-transition);
    height: 100%;
}

.bp-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bp-shadow-lg);
    border-color: var(--bp-primary);
}

/* Step number (service pages use .bp-step-number) */
.bp-step-number {
    width: 52px;
    height: 52px;
    background: var(--bp-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    letter-spacing: -0.02em;
}

.bp-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 10px;
}

.bp-step-card p {
    font-size: 14px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* How It Works Bootstrap row */
.bp-how-it-works .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -12px;
    margin-right: -12px;
}

.bp-how-it-works .row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

/* CTA Section (service pages use .bp-cta-section) */
.bp-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #0f172a 70%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.bp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* CTA Content (service pages use .bp-cta-content) */
.bp-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.bp-cta-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.bp-cta-content p {
    font-size: 16px;
    color: var(--bp-gray-400);
    margin-bottom: 32px;
    line-height: 1.7;
}

.bp-cta-section .theme-btn {
    background: #ffffff !important;
    color: var(--bp-text) !important;
}

.bp-cta-section .theme-btn:hover {
    background: var(--bp-gray-100) !important;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1) !important;
    color: var(--bp-text) !important;
}

/* Service Stats Bar */
.bp-service-stats {
    padding: 48px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--bp-border);
}

.bp-service-stats .stats-row {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.bp-service-stats .stat-item {
    text-align: center;
}

.bp-service-stats .stat-item .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--bp-text);
    letter-spacing: -0.04em;
    line-height: 1;
}

.bp-service-stats .stat-item .stat-label {
    font-size: 13px;
    color: var(--bp-text-muted);
    margin-top: 6px;
}

/* Service Detail Section (2-column text + visual) */
.bp-service-detail {
    padding: var(--bp-section-padding);
    background: var(--bp-gray-50);
}

.bp-service-detail:nth-of-type(even) {
    background: #ffffff;
}

.bp-service-detail .detail-grid {
    display: flex;
    align-items: center;
    gap: 64px;
}

.bp-service-detail .detail-grid.reverse {
    flex-direction: row-reverse;
}

.bp-service-detail .detail-text {
    flex: 1;
}

.bp-service-detail .detail-text .bp-label {
    margin-bottom: 16px;
}

.bp-service-detail .detail-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.bp-service-detail .detail-text > p {
    font-size: 15px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.bp-service-detail .detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--bp-text);
}

.bp-service-detail .detail-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--bp-success);
}

.bp-service-detail .detail-visual {
    flex: 1;
    background: var(--bp-gray-50);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-lg);
    padding: 48px 40px;
    text-align: center;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.bp-service-detail:nth-of-type(even) .detail-visual {
    background: #ffffff;
}

.bp-service-detail .detail-visual svg {
    stroke: var(--bp-gray-300);
}

.bp-service-detail .detail-visual h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bp-text-muted);
}

/* Use Cases Section */
.bp-service-usecases {
    padding: var(--bp-section-padding);
    background: #ffffff;
}

.bp-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bp-usecase-card {
    background: var(--bp-gray-50);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 32px 24px;
    transition: var(--bp-transition);
}

.bp-usecase-card:hover {
    border-color: var(--bp-primary);
    box-shadow: var(--bp-shadow-md);
    transform: translateY(-3px);
}

.bp-usecase-card .usecase-icon {
    width: 48px;
    height: 48px;
    background: var(--bp-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bp-usecase-card .usecase-icon svg {
    stroke: #ffffff;
}

.bp-usecase-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 8px;
}

.bp-usecase-card p {
    font-size: 14px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Service FAQ */
.bp-service-faq {
    padding: var(--bp-section-padding);
    background: var(--bp-gray-50);
}

/* Related Services */
.bp-related-services {
    padding: var(--bp-section-padding);
    background: #ffffff;
    border-top: 1px solid var(--bp-border);
}

.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bp-related-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 24px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--bp-transition);
}

.bp-related-card:hover {
    border-color: var(--bp-primary);
    box-shadow: var(--bp-shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.bp-related-card .related-icon {
    width: 40px;
    height: 40px;
    background: var(--bp-primary-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bp-related-card .related-icon svg {
    stroke: var(--bp-text);
}

.bp-related-card:hover .related-icon {
    background: var(--bp-primary);
}

.bp-related-card:hover .related-icon svg {
    stroke: #ffffff;
}

.bp-related-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--bp-text);
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .bp-service-detail .detail-grid,
    .bp-service-detail .detail-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .bp-usecase-grid {
        grid-template-columns: 1fr;
    }

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

    .bp-service-stats .stats-row {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .bp-service-stats .stat-item .stat-number {
        font-size: 28px;
    }

    .bp-service-stats .stats-row {
        gap: 24px;
    }

    .bp-related-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   24. SERVICES OVERVIEW PAGE
   ============================================ */

.bp-services-overview {
    padding: var(--bp-section-padding);
    background: #ffffff;
}

.bp-services-category {
    margin-bottom: 64px;
}

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

.bp-services-category h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.bp-services-category > p {
    font-size: 14px;
    color: var(--bp-text-muted);
    margin-bottom: 24px;
}

.bp-services-category .bp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.bp-service-link-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 28px 24px;
    transition: var(--bp-transition);
    text-decoration: none;
    display: block;
}

.bp-service-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bp-shadow-md);
    border-color: var(--bp-primary);
    text-decoration: none;
    color: inherit;
}

.bp-service-link-card .bp-service-icon {
    margin-bottom: 16px;
}

.bp-service-link-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 8px;
}

.bp-service-link-card p {
    font-size: 13px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin: 0;
}

.bp-service-link-card .bp-card-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-text);
    margin-top: 16px;
    transition: var(--bp-transition);
}

.bp-service-link-card:hover .bp-card-arrow {
    color: var(--bp-accent);
    gap: 10px;
}

.bp-service-link-card:hover .bp-service-icon {
    background: var(--bp-primary);
    color: #ffffff;
}

.bp-service-link-card:hover .bp-service-icon svg {
    stroke: #ffffff;
}

.bp-service-link-card .bp-card-arrow svg {
    transition: var(--bp-transition);
}

.bp-service-link-card:hover .bp-card-arrow svg {
    stroke: var(--bp-accent);
}


/* ============================================
   25. PRICING PAGE
   ============================================ */

.bp-pricing {
    padding: var(--bp-section-padding);
    background: #ffffff;
}

.bp-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}

.bp-pricing-toggle span {
    font-size: 14px;
    font-weight: 500;
    color: var(--bp-text-muted);
    transition: var(--bp-transition);
}

.bp-pricing-toggle span.active {
    color: var(--bp-text);
    font-weight: 600;
}

.bp-toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--bp-gray-200);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: var(--bp-transition);
}

.bp-toggle-switch.active {
    background: var(--bp-primary);
}

.bp-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    transition: var(--bp-transition);
    box-shadow: var(--bp-shadow-sm);
}

.bp-toggle-switch.active::after {
    left: 27px;
}

.bp-save-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--bp-success);
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 10px;
    border-radius: 100px;
}

.bp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.bp-pricing-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-lg);
    padding: 40px 32px;
    transition: var(--bp-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.bp-pricing-card:hover {
    box-shadow: var(--bp-shadow-lg);
}

.bp-pricing-card.popular {
    border-color: var(--bp-primary);
    box-shadow: var(--bp-shadow-lg);
    transform: scale(1.02);
}

.bp-pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bp-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bp-pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 8px;
}

.bp-pricing-card .bp-pricing-desc {
    font-size: 13px;
    color: var(--bp-text-muted);
    margin-bottom: 20px;
}

.bp-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.bp-price .amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--bp-text);
    letter-spacing: -0.04em;
    line-height: 1;
}

.bp-price .period {
    font-size: 14px;
    color: var(--bp-text-muted);
}

.bp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.bp-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--bp-text);
    border-bottom: 1px solid var(--bp-border-light);
}

.bp-pricing-features li:last-child {
    border-bottom: none;
}

.bp-pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.bp-pricing-features li .check {
    color: var(--bp-success);
}

.bp-pricing-features li .cross {
    color: var(--bp-gray-300);
}

.bp-pricing-features li.disabled {
    color: var(--bp-gray-400);
}

.bp-pricing-card .bp-btn-primary,
.bp-pricing-card .bp-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Pricing Comparison Table */
.bp-comparison {
    padding: 0 0 var(--bp-section-padding);
    background: #ffffff;
}

.bp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    overflow: hidden;
    margin-top: 48px;
}

.bp-comparison-table thead th {
    background: var(--bp-gray-50);
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--bp-text);
    text-align: center;
    border-bottom: 2px solid var(--bp-border);
}

.bp-comparison-table thead th:first-child {
    text-align: left;
    width: 35%;
}

.bp-comparison-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--bp-text);
    text-align: center;
    border-bottom: 1px solid var(--bp-border-light);
}

.bp-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--bp-text);
}

.bp-comparison-table tbody tr:hover {
    background: var(--bp-gray-50);
}

.bp-check {
    color: var(--bp-success);
    font-weight: 700;
    font-size: 16px;
}

.bp-cross {
    color: var(--bp-gray-300);
    font-size: 16px;
}

/* Pricing FAQ */
.bp-pricing-faq {
    padding: var(--bp-section-padding);
    background: var(--bp-gray-50);
}


/* ============================================
   26. INTEGRATIONS PAGE ENHANCED
   ============================================ */

.bp-integrations-hero {
    padding: 140px 0 80px;
    background: var(--bp-gray-50);
    position: relative;
    overflow: hidden;
}

.bp-integrations-hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.bp-integrations-hero .bp-label {
    background: rgba(15, 15, 15, 0.05);
    border-color: rgba(15, 15, 15, 0.1);
    color: #666666;
}

.bp-integrations-hero h1 {
    color: #0f0f0f;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
}

.bp-integrations-hero p {
    color: #64748b;
    font-size: 17px;
    max-width: 560px;
    line-height: 1.7;
}

.bp-integrations-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
}

.bp-integrations-stat {
    text-align: center;
}

.bp-integrations-stat .number {
    font-size: 32px;
    font-weight: 700;
    color: #0f0f0f;
    letter-spacing: -0.04em;
    line-height: 1;
}

.bp-integrations-stat .label {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* Platform Cards */
.bp-platforms {
    padding: var(--bp-section-padding);
    background: #ffffff;
}

.bp-platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.bp-platform-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 32px 28px;
    transition: var(--bp-transition);
}

.bp-platform-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bp-shadow-lg);
    border-color: var(--bp-primary);
}

.bp-platform-card .platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.bp-platform-card .platform-icon {
    width: 48px;
    height: 48px;
    background: var(--bp-primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bp-platform-card .platform-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0;
}

.bp-platform-card .platform-header .platform-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--bp-text-muted);
    background: var(--bp-gray-50);
    padding: 2px 8px;
    border-radius: 100px;
    margin-top: 2px;
}

.bp-platform-card p {
    font-size: 14px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.bp-platform-card .platform-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bp-platform-card .format-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--bp-gray-50);
    color: var(--bp-text-muted);
    border: 1px solid var(--bp-border);
}

/* Secondary platforms grid */
.bp-secondary-platforms {
    padding: 0 0 var(--bp-section-padding);
    background: #ffffff;
}

.bp-secondary-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.bp-secondary-tag {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 100px;
    background: var(--bp-gray-50);
    color: var(--bp-text-muted);
    border: 1px solid var(--bp-border);
    transition: var(--bp-transition);
}

.bp-secondary-tag:hover {
    border-color: var(--bp-primary);
    color: var(--bp-text);
}


/* ============================================
   27. RESPONSIVE ADDITIONS
   ============================================ */

@media (max-width: 991px) {
    /* Mega dropdown hidden on mobile - use mobile menu instead */
    .bp-mega-menu {
        display: none !important;
    }

    .bp-mega-dropdown > a::after {
        display: none;
    }

    .bp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .bp-pricing-card.popular {
        transform: none;
    }

    .bp-platform-grid {
        grid-template-columns: 1fr;
    }

    .bp-integrations-stats {
        gap: 24px;
    }

    .bp-integrations-stat .number {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .bp-service-hero {
        padding: 120px 0 56px;
    }

    .bp-service-hero h1 {
        font-size: clamp(26px, 6vw, 36px);
    }

    .bp-step-card {
        padding: 28px 20px;
    }

    .bp-step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .bp-cta-section {
        padding: 64px 0;
    }

    .bp-cta-content h2 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .bp-integrations-hero {
        padding: 120px 0 56px;
    }

    .bp-integrations-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .bp-comparison-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .bp-pricing-card {
        padding: 28px 20px;
    }

    .bp-price .amount {
        font-size: 32px;
    }

    .bp-platform-card {
        padding: 24px 20px;
    }
}

/* ============================================
   28. COMPREHENSIVE RESPONSIVE FIX — Feb 2026
   All screens: 320px → 480px → 640px → 768px → 1024px
   ============================================ */

/* --- Global: prevent horizontal overflow --- */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}
img, video, iframe, svg, canvas {
    max-width: 100%;
    height: auto;
}
.auto-container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    max-width: 90%;
}

/* --- Fix: Platform grid minmax overflow on mobile --- */
.bp-platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
}

/* --- Fix: Integrations stats flex wrap --- */
.bp-integrations-stats {
    flex-wrap: wrap;
}

/* --- Fix: Footer columns on tablet/mobile --- */
@media (max-width: 991px) {
    .bp-footer .row {
        row-gap: 32px;
    }
    .bp-footer .col-lg-3,
    .bp-footer .col-lg-2,
    .bp-footer .col-lg-1 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* ---- 767px: Mobile standard ---- */
@media (max-width: 767px) {
    /* Footer: 2-col on small tablets */
    .bp-footer .col-lg-3,
    .bp-footer .col-lg-2,
    .bp-footer .col-lg-1 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .bp-footer .col-lg-3:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 8px;
    }
    .bp-footer-brand > p {
        max-width: 100%;
    }

    /* Hero buttons full width */
    .bp-hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }
    .bp-hero-cta-group a,
    .bp-hero-cta-group button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Stats grid: 2 columns */
    .bp-integrations-stats {
        justify-content: center;
        gap: 16px;
    }
    .bp-integrations-stat .number {
        font-size: 22px;
    }

    /* Comparison table scroll */
    .bp-comparison-table-wrap,
    .bp-comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Contact form: force 1 column */
    .bp-contact-form [style*="grid-template-columns"],
    form[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Section padding reduce */
    .bp-service-hero,
    .bp-integrations-hero {
        padding: 100px 0 48px;
    }

    /* About stats grid */
    .bp-about-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
}

/* ---- 576px: Small mobile ---- */
@media (max-width: 576px) {
    /* Footer: single column */
    .bp-footer .col-lg-3,
    .bp-footer .col-lg-2,
    .bp-footer .col-lg-1,
    .bp-footer .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .bp-footer .row {
        row-gap: 24px;
    }
    .bp-footer-col h5 {
        margin-bottom: 12px;
    }

    /* Integrations stats: 2x2 grid */
    .bp-integrations-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .bp-integrations-stat .number {
        font-size: 20px;
    }

    /* Platform cards padding */
    .bp-platform-card {
        padding: 20px 16px;
    }
    .bp-platform-card .platform-header {
        gap: 12px;
    }
    .bp-platform-card .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .bp-platform-card .platform-header h4 {
        font-size: 16px;
    }

    /* Secondary tags smaller */
    .bp-secondary-tag {
        font-size: 12px;
        padding: 6px 14px;
    }

    /* Service hero */
    .bp-service-hero,
    .bp-integrations-hero {
        padding: 90px 0 40px;
    }
    .bp-service-hero h1,
    .bp-integrations-hero h1 {
        font-size: clamp(22px, 6vw, 30px);
    }
    .bp-service-hero p,
    .bp-integrations-hero p {
        font-size: 14px;
    }

    /* Page hero visual */
    .bp-page-hero-visual {
        display: none;
    }

    /* Step cards */
    .bp-step-card {
        padding: 20px 16px;
    }
    .bp-step-number {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    /* CTA section */
    .bp-cta-inner {
        padding: 40px 20px;
    }
    .bp-cta-inner h2 {
        font-size: 22px;
    }
    .bp-cta-inner p {
        font-size: 13px;
    }
    .bp-hero-cta-group .bp-btn-primary,
    .bp-hero-cta-group .bp-btn-secondary,
    .bp-cta-inner .bp-btn-primary,
    .bp-cta-inner .bp-btn-secondary,
    .bp-cta-inner .bp-btn-white,
    .bp-cta-inner .bp-btn-ghost {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px;
    }

    /* How it works grid */
    .bp-how-grid {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    /* FAQ */
    .bp-faq-q {
        font-size: 13px;
        padding: 14px 40px 14px 16px;
    }
    .bp-faq-a {
        padding: 0 16px 14px;
        font-size: 13px;
    }

    /* Contact form */
    form[style*="grid-template-columns"],
    .bp-contact-form [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    input, select, textarea {
        min-height: 44px;
        font-size: 16px !important; /* prevent iOS zoom */
    }

    /* Testimonials */
    .bp-testimonial-card {
        padding: 20px 16px;
    }
    .bp-testimonial-card .quote {
        font-size: 14px;
    }
}

/* ---- 420px: Extra small mobile ---- */
@media (max-width: 420px) {
    .auto-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .bp-hero {
        padding: 90px 0 40px;
    }
    .bp-hero-content h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    .bp-hero-content p {
        font-size: 14px;
    }

    .bp-section-header h2 {
        font-size: 22px;
    }
    .bp-section-header p {
        font-size: 13px;
    }

    /* Stats: smaller */
    .bp-stat-number {
        font-size: 24px;
    }
    .bp-stats-grid {
        gap: 8px;
    }
    .bp-stat-card {
        padding: 16px 12px;
    }

    /* Feature/Service cards */
    .bp-feature-card,
    .bp-service-card {
        padding: 20px 16px;
    }
    .bp-feature-icon,
    .bp-service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Service hero */
    .bp-service-hero,
    .bp-integrations-hero {
        padding: 80px 0 32px;
    }
    .bp-breadcrumb {
        font-size: 12px;
        margin-bottom: 16px;
    }

    /* Footer tighter */
    .bp-footer {
        padding: 36px 0 0;
    }
    .bp-footer .row {
        row-gap: 20px;
    }
    .bp-footer-col ul {
        columns: 2;
    }
    .bp-footer-bottom {
        padding: 16px 0;
        margin-top: 24px;
    }
    .bp-footer-bottom p {
        font-size: 11px;
    }

    /* CTA */
    .bp-cta-inner {
        padding: 32px 16px;
        border-radius: var(--bp-radius);
    }
    .bp-cta-inner h2 {
        font-size: 20px;
    }

    /* Integrations */
    .bp-integrations-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .bp-integrations-stat .number {
        font-size: 18px;
    }
    .bp-integrations-stat .label {
        font-size: 11px;
    }
    .bp-platform-card {
        padding: 16px 14px;
    }
    .bp-platform-card p {
        font-size: 13px;
    }

    /* FAQ */
    .bp-faq-item {
        border-radius: var(--bp-radius-sm);
    }
    .bp-faq-q {
        font-size: 13px;
        padding: 12px 36px 12px 14px;
        min-height: 44px;
    }

    /* Touch targets: min 44px */
    a, button, [role="button"], input[type="submit"],
    .bp-btn-primary, .bp-btn-secondary, .theme-btn {
        min-height: 44px;
    }
    .bp-faq-q::after {
        right: 14px;
    }

    /* Newsletter form */
    .bp-newsletter-form input {
        font-size: 14px;
        padding: 10px 14px;
    }
}

/* End of CruxOne Modern Redesign CSS v7.0 — Responsive Fix */
