/* Rolls-Royce Elite Style - Auto-themed */
:root {
    --ojpi-primary: #1A0A0E;
    --ojpi-accent: #e21f44;
    --ojpi-gold: #d82549;
    --ojpi-gold-light: #cdb878;
    --ojpi-gold-dark: #937a3f;
    --ojpi-bg: #FAFAF8;
    --ojpi-bg-dark: #182532;
    --ojpi-bg-gradient: linear-gradient(135deg, #353b53 0%, #172928 50%, #333052 100%);
    --ojpi-text: #1A0A0E;
    --ojpi-text-light: #4f4c43;
    --ojpi-border: #dbd9c6;
    --ojpi-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --ojpi-shadow-hover: rgba(23,36,48,0.2);
    --ojpi-shadow-gold: rgba(197,168,103,0.25);
    --ojpi-success: #21b363;
    --ojpi-danger: #ea4544;
    --ojpi-overlay: rgba(21,39,47,0.7);
    --ojpi-cool-blue: #438f9c;
    --ojpi-cool-blue-light: #6dabb8;
    --ojpi-cool-blue-dark: #317385;

    /* FB theme variables (missing) */
    --fb-primary: #1b2838;
    --fb-secondary: #b61134;
    --fb-secondary-dark: #a0122e;
    --fb-dark: #fff;
    --fb-white: #fff;
    --fb-gray-200: #e4eaeb;
    --fb-radius-sm: 6px;
    --fb-transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--ojpi-text);
    background: var(--ojpi-bg);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(68,146,169,0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(194,161,93,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    background-attachment: fixed;
    font-size: 16px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(66,145,168,0.008) 3px, rgba(81,143,159,0.008) 6px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.ojpi-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 27px;
}

/* Scroll Progress */
.ojpi-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ojpi-cool-blue), var(--ojpi-gold));
    z-index: 9999;
    transition: width 0.1s;
}

/* Header */
.ojpi-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(13px) saturate(180%);
    border-bottom: 2px solid var(--ojpi-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(31,37,44,0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.ojpi-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ojpi-cool-blue), var(--ojpi-gold), var(--ojpi-cool-blue), transparent);
    opacity: 0.6;
}

.ojpi-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 26px;
}

.ojpi-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--ojpi-primary);
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s;
}

.ojpi-logo:hover {
    transform: translateY(-2px);
}

.ojpi-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--ojpi-cool-blue), var(--ojpi-gold));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 800;
}

.ojpi-logo-text {
    background: linear-gradient(135deg, var(--ojpi-primary), var(--ojpi-cool-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ojpi-nav {
    display: flex;
    gap: 30px;
}

.ojpi-nav-link {
    color: var(--ojpi-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 6px 0;
}

.ojpi-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ojpi-cool-blue), var(--ojpi-gold));
    transition: width 0.3s;
}

.ojpi-nav-link:hover::after,
.ojpi-nav-link--active::after {
    width: 100%;
}

.ojpi-nav-link:hover {
    color: var(--ojpi-cool-blue);
}

.ojpi-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.ojpi-menu-line {
    width: 27px;
    height: 2px;
    background: var(--ojpi-primary);
    transition: all 0.3s;
    border-radius: 1px;
}

.ojpi-menu-toggle.active .ojpi-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.ojpi-menu-toggle.active .ojpi-menu-line:nth-child(2) {
    opacity: 0;
}

.ojpi-menu-toggle.active .ojpi-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.ojpi-mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid var(--ojpi-border);
    padding: 23px 29px;
    gap: 14px;
    box-shadow: 0 5px 20px var(--ojpi-shadow);
}

.ojpi-mobile-nav.active {
    display: flex;
}

.ojpi-mobile-link {
    color: var(--ojpi-text);
    text-decoration: none;
    font-weight: 500;
    padding: 9px 0;
    border-bottom: 2px solid var(--ojpi-border);
    transition: color 0.3s;
}

.ojpi-mobile-link:hover {
    color: var(--ojpi-cool-blue);
}

/* Hero Section */
.ojpi-hero {
    background: linear-gradient(135deg, #343352 0%, #16203b 50%, #333647 100%);
    color: white;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.ojpi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(77,150,157,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(203,168,98,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ojpi-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(75,149,156,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.ojpi-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ojpi-hero-badge {
    display: inline-block;
    padding: 11px 21px;
    background: rgba(74,147,164,0.2);
    border: 1px solid rgba(73,137,171,0.4);
    border-radius: 33px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 26px;
    color: var(--ojpi-cool-blue-light);
}

.ojpi-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 27px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(199,175,96,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ojpi-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 34px;
}

.ojpi-hero-actions {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}

.ojpi-btn {
    padding: 14px 29px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.ojpi-btn-primary {
    background: linear-gradient(135deg, var(--ojpi-cool-blue), var(--ojpi-cool-blue-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(70,138,162,0.35), 0 2px 8px rgba(69,147,169,0.2);
    position: relative;
    overflow: hidden;
}

.ojpi-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.ojpi-btn-primary:hover::before {
    left: 100%;
}

.ojpi-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67,151,168,0.45), 0 4px 12px rgba(66,140,159,0.25);
}

.ojpi-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ojpi-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
.ojpi-main {
    padding: 63px 0;
}

.ojpi-article {
    background: white;
    border-radius: 20px;
    padding: 57px;
    box-shadow: 0 10px 39px var(--ojpi-shadow), 0 2px 10px rgba(30,42,43,0.05);
    margin-bottom: 48px;
    border: 2px solid rgba(77,141,165,0.08);
    position: relative;
}

.ojpi-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ojpi-cool-blue), var(--ojpi-gold), var(--ojpi-cool-blue));
    border-radius: 17px 22px 0 0;
}

.ojpi-intro {
    margin-bottom: 39px;
    padding-bottom: 33px;
    border-bottom: 3px solid var(--ojpi-border);
}

.ojpi-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--ojpi-text);
    font-weight: 500;
    margin-bottom: 23px;
}

.ojpi-article h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--ojpi-primary);
    margin: 47px 0 26px;
    line-height: 1.3;
    position: relative;
    padding-left: 19px;
    border-left: 5px solid var(--ojpi-cool-blue);
}

.ojpi-article h2:first-of-type {
    margin-top: 0;
}

.ojpi-article h2::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ojpi-cool-blue), var(--ojpi-gold));
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.ojpi-article h2:hover::before {
    opacity: 1;
}

.ojpi-article p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ojpi-text);
    margin-bottom: 17px;
}

.ojpi-article ul,
.ojpi-article ol {
    margin: 22px 0;
    padding-left: 29px;
}

.ojpi-article li {
    font-size: 20px;
    line-height: 1.8;
    color: var(--ojpi-text);
    margin-bottom: 13px;
}

.ojpi-article strong {
    color: var(--ojpi-primary);
    font-weight: 600;
}

/* Image Wrapper */
.ojpi-image-wrapper {
    margin: 38px 0;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 12px 37px var(--ojpi-shadow), 0 4px 15px rgba(76,139,156,0.1);
    position: relative;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    padding: 5px;
}

.ojpi-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75,144,164,0.05) 0%, rgba(201,167,104,0.05) 100%);
    border-radius: 17px;
    z-index: 1;
    pointer-events: none;
}

.ojpi-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    background: #f5f7fa;
}

.ojpi-article-image[loading="lazy"] {
    opacity: 0;
    animation: fadeInImage 0.6s ease-in-out forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

.ojpi-image-wrapper:hover .ojpi-article-image {
    transform: scale(1.03) translateY(-2px);
}

.ojpi-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(25,39,49,0.3) 0%, transparent 100%);
    border-radius: 0 0 12px 9px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.ojpi-image-wrapper:hover::after {
    opacity: 1;
}

/* Section Divider */
.ojpi-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ojpi-border), transparent);
    margin: 49px 0;
}

/* Criteria Box Component */
.ojpi-criteria-section {
    margin: 53px 0;
}

.ojpi-criteria-box {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    border: 2px solid var(--ojpi-border);
    border-radius: 18px;
    padding: 53px;
    box-shadow: 0 10px 37px var(--ojpi-shadow), 0 4px 15px rgba(72,141,170,0.08);
    position: relative;
    overflow: hidden;
}

.ojpi-criteria-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(71,139,162,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.ojpi-criteria-header {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 31px;
    padding-bottom: 18px;
    border-bottom: 3px solid var(--ojpi-border);
}

.ojpi-criteria-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ojpi-cool-blue), var(--ojpi-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(70,145,169,0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ojpi-criteria-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ojpi-criteria-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ojpi-primary);
    margin: 0;
}

.ojpi-criteria-list {
    display: grid;
    gap: 17px;
}

.ojpi-criteria-item {
    display: flex;
    gap: 22px;
    padding: 23px;
    background: white;
    border-radius: 17px;
    border-left: 5px solid var(--ojpi-cool-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ojpi-criteria-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(67,146,160,0.1), transparent);
    transition: width 0.4s;
}

.ojpi-criteria-item:hover::before {
    width: 100%;
}

.ojpi-criteria-item:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px var(--ojpi-shadow), 0 2px 8px rgba(66,139,167,0.15);
    border-left-color: var(--ojpi-gold);
}

.ojpi-criteria-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--ojpi-cool-blue), var(--ojpi-cool-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(81,145,159,0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.ojpi-criteria-item:hover .ojpi-criteria-check {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 4px 15px rgba(79,149,157,0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.ojpi-criteria-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ojpi-primary);
    margin-bottom: 8px;
}

.ojpi-criteria-content p {
    font-size: 16px;
    color: var(--ojpi-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Trust Badges Component */
.ojpi-trust-section {
    margin: 52px 0;
    padding: 49px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    border-radius: 19px;
}

.ojpi-trust-header {
    text-align: center;
    margin-bottom: 41px;
}

.ojpi-trust-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--ojpi-primary);
    margin-bottom: 15px;
}

.ojpi-trust-subtitle {
    font-size: 18px;
    color: var(--ojpi-text-light);
}

.ojpi-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
    margin-top: 39px;
}

.ojpi-trust-badge {
    background: white;
    border: 2px solid var(--ojpi-border);
    border-radius: 17px;
    padding: 33px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--ojpi-shadow);
    position: relative;
    overflow: hidden;
}

.ojpi-trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77,136,156,0.05), transparent);
    transition: left 0.6s;
}

.ojpi-trust-badge:hover::before {
    left: 100%;
}

.ojpi-trust-badge:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--ojpi-cool-blue);
    box-shadow: 0 12px 35px var(--ojpi-shadow), 0 4px 15px rgba(76,150,164,0.2);
}

.ojpi-trust-badge-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--ojpi-cool-blue), var(--ojpi-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 33px;
    color: white;
    box-shadow: 0 6px 20px rgba(75,143,171,0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    position: relative;
}

.ojpi-trust-badge-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--ojpi-cool-blue), var(--ojpi-gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.ojpi-trust-badge:hover .ojpi-trust-badge-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(73,147,170,0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.ojpi-trust-badge:hover .ojpi-trust-badge-icon::before {
    opacity: 0.3;
}

.ojpi-trust-badge-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ojpi-primary);
    margin-bottom: 13px;
}

.ojpi-trust-badge-desc {
    font-size: 15px;
    color: var(--ojpi-text-light);
    line-height: 1.6;
}

/* Phone CTA Component */
.ojpi-phone-cta {
    background: linear-gradient(135deg, var(--ojpi-primary) 0%, var(--ojpi-bg-dark) 100%);
    border-radius: 17px;
    padding: 62px;
    text-align: center;
    color: white;
    margin: 59px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(23,41,55,0.3), 0 4px 15px rgba(70,140,161,0.2);
    border: 1px solid rgba(69,149,168,0.2);
}

.ojpi-phone-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(68,147,160,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.ojpi-phone-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(194,162,100,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

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

.ojpi-phone-cta-content {
    position: relative;
    z-index: 1;
}

.ojpi-phone-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 19px;
    background: linear-gradient(135deg, #ffffff 0%, var(--ojpi-cool-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ojpi-phone-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.ojpi-phone-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    padding: 20px 42px;
    background: linear-gradient(135deg, var(--ojpi-cool-blue), var(--ojpi-cool-blue-dark));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 21px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(81,140,166,0.45), 0 2px 10px rgba(80,138,158,0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.ojpi-phone-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

.ojpi-phone-cta-link:hover::before {
    left: 100%;
}

.ojpi-phone-cta-link:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(78,137,157,0.55), 0 4px 15px rgba(77,151,164,0.4);
}

.ojpi-phone-cta-number {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* FAQ Accordion */
.ojpi-faq-section {
    margin: 60px 0;
}

.ojpi-faq-header {
    text-align: center;
    margin-bottom: 37px;
}

.ojpi-faq-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--ojpi-primary);
    margin-bottom: 11px;
}

.ojpi-faq-subtitle {
    font-size: 21px;
    color: var(--ojpi-text-light);
}

.ojpi-faq-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.ojpi-faq-item {
    background: white;
    border: 2px solid var(--ojpi-border);
    border-radius: 17px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ojpi-faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--ojpi-cool-blue), var(--ojpi-gold));
    transition: width 0.4s;
}

.ojpi-faq-item.active::before {
    width: 4px;
}

.ojpi-faq-item.active {
    border-color: var(--ojpi-cool-blue);
    box-shadow: 0 8px 30px var(--ojpi-shadow), 0 4px 15px rgba(76,141,171,0.15);
    transform: translateX(4px);
}

.ojpi-faq-question {
    width: 100%;
    padding: 22px 31px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--ojpi-primary);
    transition: all 0.3s;
}

.ojpi-faq-question:hover {
    color: var(--ojpi-cool-blue);
}

.ojpi-faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    color: var(--ojpi-cool-blue);
    flex-shrink: 0;
}

.ojpi-faq-item.active .ojpi-faq-icon {
    transform: rotate(180deg);
}

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

.ojpi-faq-answer-content {
    padding: 0 27px 27px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--ojpi-text-light);
}

/* Footer */
.ojpi-footer {
    background: linear-gradient(135deg, var(--ojpi-primary) 0%, #15263a 50%, var(--ojpi-primary) 100%);
    color: white;
    padding: 68px 0 38px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.ojpi-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(75,138,163,0.5), rgba(201,169,103,0.5), rgba(73,142,162,0.5), transparent);
}

.ojpi-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(72,151,169,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ojpi-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 41px;
    margin-bottom: 38px;
}

.ojpi-footer-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.ojpi-footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.ojpi-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--ojpi-cool-blue-light);
}

.ojpi-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ojpi-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.ojpi-footer-links a:hover {
    color: var(--ojpi-cool-blue-light);
}

.ojpi-footer-bottom {
    text-align: center;
    padding-top: 38px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
}

.ojpi-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(67,148,159,0.5), transparent);
}

/* Additional Detail Styles */
.ojpi-article p {
    text-align: justify;
    text-justify: inter-word;
}

.ojpi-article ul li,
.ojpi-article ol li {
    position: relative;
    padding-left: 5px;
}

.ojpi-article ul li::marker {
    color: var(--ojpi-cool-blue);
    font-weight: 600;
}

.ojpi-article strong {
    color: var(--ojpi-primary);
    font-weight: 600;
    background: linear-gradient(135deg, transparent 0%, rgba(66,146,166,0.08) 50%, transparent 100%);
    padding: 3px 3px;
    border-radius: 4px;
}

.ojpi-section-divider {
    position: relative;
    margin: 61px 0;
}

.ojpi-section-divider::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--ojpi-bg);
    padding: 0 18px;
    color: var(--ojpi-cool-blue);
    font-size: 20px;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.ojpi-btn:focus,
.ojpi-faq-question:focus,
.ojpi-form-input:focus,
.ojpi-form-textarea:focus {
    outline: 3px solid rgba(81,139,158,0.5);
    outline-offset: 1px;
}

/* Loading States */
.ojpi-article-image[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #dee8d6 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .ojpi-header { position: relative !important; }
    .ojpi-nav {
        display: none;
    }
    
    .ojpi-menu-toggle {
        display: flex;
    }
    
    .ojpi-hero {
        padding: 59px 0 83px;
    }
    
    .ojpi-hero-title {
        font-size: 32px;
    }
    
    .ojpi-hero-subtitle {
        font-size: 18px;
    }
    
    .ojpi-article {
        padding: 38px 24px;
        border-radius: 13px;
    }
    
    .ojpi-article h2 {
        font-size: 26px;
        padding-left: 15px;
    }
    
    .ojpi-criteria-box {
        padding: 38px 25px;
    }
    
    .ojpi-phone-cta {
        padding: 43px 27px;
    }
    
    .ojpi-phone-cta-title {
        font-size: 28px;
    }
    
    .ojpi-trust-grid {
        grid-template-columns: 1fr;
    }
    
    .ojpi-container {
        padding: 0 17px;
    }
    
    .ojpi-image-wrapper {
        margin: 32px 0;
    }
}


/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 6px;
    margin-bottom: 11px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 12px 23px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 8px 27px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 9px 14px;
        font-size: 16px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 9px !important;
        margin: 0 auto 10px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.ojpi-wrapper, .ojpi-content, .ojpi-hero-inner, .ojpi-companies-container, 
.ojpi-article, .ojpi-container, .ojpi-footer-inner, .ojpi-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.ojpi-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.ojpi-td-action {
    text-align: center !important;
}
.ojpi-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}


/* ==========================================
   COMPREHENSIVE FIXES - March 2026
   ========================================== */

/* Desktop content max-width 1500px */
#homepage-table-wrapper,
.fb-companies-table-wrapper,
.ojpi-guide,
.ojpi-faq,
.ojpi-testimonials,
main.ojpi-content > div {
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Desktop company logos 170-230px width */
@media (min-width: 769px) {
    .fb-company-logo {
        width: 200px !important;
        min-width: 170px !important;
        max-width: 230px !important;
        height: auto !important;
        max-height: 120px !important;
        object-fit: contain !important;
        padding: 8px !important;
        border: 1px solid #e2def4 !important;
        border-radius: 10px !important;
        background: #fff !important;
    }
}

/* Company table width */
.fb-companies-table {
    max-width: 1500px !important;
    width: 100% !important;
}

/* Button text centering */
.fb-btn-primary,
.fb-btn-review,
.fb-btn,
.company-card__btn-primary,
.company-card__btn-review,
.btn-cta {
    text-align: center !important;
}

/* Fix action buttons column */
.fb-action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 11px !important;
    align-items: stretch !important;
}
.fb-action-buttons .fb-btn {
    display: block !important;
    text-align: center !important;
    white-space: nowrap !important;
    padding: 11px 22px !important;
    border-radius: 11px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.fb-action-buttons .fb-btn-primary {
    background: linear-gradient(135deg, #c61436, #dd1d46) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(198,25,62,0.25) !important;
}
.fb-action-buttons .fb-btn-primary:hover {
    transform: translateY(-1px) !important;
}
.fb-action-buttons .fb-btn-review {
    background: transparent !important;
    color: #1f2c35 !important;
    border: 2px solid #151b3a !important;
}
.fb-action-buttons .fb-btn-review:hover {
    background: #141a2a !important;
    color: #fff !important;
}

/* Article images - 30% width on desktop, float */
.article-img {
    max-width: 30% !important;
    height: auto !important;
    margin: 17px 22px 19px 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 3px 18px rgba(0,0,0,0.1) !important;
}
.article-img.float-left {
    float: left !important;
    margin: 15px 27px 17px 0 !important;
}
.article-img.float-right {
    float: right !important;
    margin: 14px 0 19px 24px !important;
}
.article-img.centered {
    float: none !important;
    display: block !important;
    margin: 21px auto !important;
}

/* FAQ compact height */
.ojpi-faq-item {
    margin-bottom: 7px !important;
}
.ojpi-faq-question {
    padding: 11px 19px !important;
    font-size: 16px !important;
    margin: 0 !important;
    min-height: 0 !important;
}
.ojpi-faq-answer {
    padding: 0 14px !important;
}
.ojpi-faq-item.active .ojpi-faq-answer {
    padding: 0 19px 12px !important;
}
[class*="-faq"], #faq, [id="faq"] {
    max-width: 900px !important;
    padding: 0 1rem !important;
}

/* Table of contents */
.toc-wrapper {
    max-width: 800px;
    margin: 23px auto;
    padding: 0 19px;
}
.toc-box {
    background: #f8faf9;
    border: 1px solid #dbe8f1;
    border-radius: 10px;
    padding: 19px 20px;
    max-width: 400px;
}
.toc-title {
    font-size: 15px;
    font-weight: 700;
    color: #1c2320;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    cursor: pointer;
    user-select: none;
    margin: 0;
}
.toc-title-text {
    display: flex;
    align-items: center;
    gap: 7px;
}
.toc-toggle-icon {
    font-size: 19px;
    font-weight: 400;
    color: #838685;
    transition: transform 0.25s;
    flex-shrink: 0;
    line-height: 1;
}
.toc-box.toc-open .toc-toggle-icon {
    transform: rotate(45deg);
}
.toc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}
.toc-box.toc-open .toc-body {
    max-height: 2000px;
    margin-top: 15px;
}
.toc-list {
    list-style: decimal;
    padding: 0 0 0 18px;
    margin: 0;
}
.toc-list li {
    padding: 4px 0;
    border-bottom: 2px solid #eee;
}
.toc-list li:last-child {
    border-bottom: none;
}
.toc-list a {
    color: #41899b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
    line-height: 1.4;
}
.toc-list a:hover {
    color: #e21444;
}

/* Review page - company logo semi-transparent white bg */
.review-hero .review-logo {
    background: rgba(255,255,255,0.85) !important;
    padding: 15px !important;
    border-radius: 17px !important;
    box-shadow: 0 3px 23px rgba(0,0,0,0.15) !important;
}

/* Breadcrumbs contained */
.breadcrumbs,
[class*="breadcrumb"] {
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0 13px !important;
}

/* Banners centered */
[class*="banner"],
.ojpi-guide img[alt*="Kit"],
.ojpi-guide a > img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Review sticky footer */
.review-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 11px 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-height: 59px;
    transition: transform 0.3s;
}
.review-sticky-footer.hidden {
    transform: translateY(100%);
}
.review-sticky-footer img {
    height: 32px;
    border-radius: 5px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.85);
    padding: 3px;
}
.review-sticky-footer .rsf-text {
    font-size: 13px;
    font-weight: 600;
    color: #10151a;
    white-space: nowrap;
}
.review-sticky-footer .rsf-btn {
    padding: 11px 17px;
    background: linear-gradient(135deg,#c01b42,#e0243e);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 7px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.review-sticky-footer .rsf-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #9b8f95;
    padding: 3px;
    line-height: 1;
}

/* Exit intent popup */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.exit-popup-overlay.visible {
    display: flex !important;
}
.exit-popup-box {
    background: #fff;
    border-radius: 22px;
    padding: 39px 35px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: epBounce 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
@keyframes epBounce {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #9a9c9e;
    line-height: 1;
}
.exit-popup-close:hover { color: #293429; }
.exit-popup-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #221315;
    margin: 0 0 11px;
}
.exit-popup-box p {
    font-size: 16px;
    color: #555a50;
    margin: 0 0 18px;
    line-height: 1.5;
}
.exit-popup-box .ep-btn {
    display: inline-block;
    padding: 17px 32px;
    background: linear-gradient(135deg,#be0f46,#e81842);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 3px 15px rgba(190,27,58,0.3);
}
.exit-popup-box .ep-btn:hover {
    transform: translateY(-2px);
}
.exit-popup-box .ep-sub {
    font-size: 12px;
    color: #a19893;
    margin-top: 15px;
}

/* Mobile overrides */
@media (max-width: 768px) {
    /* Article images full width on mobile */
    .article-img,
    .article-img.float-left,
    .article-img.float-right,
    .article-img.centered {
        float: none !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 13px 0 !important;
        display: block !important;
    }

    /* Mobile card logos 40-50% width */
    .company-card__logo-wrap {
        width: 50% !important;
        max-width: 200px !important;
        margin: 7px auto 15px !important;
    }

    /* Center everything in mobile cards */
    .company-card {
        text-align: center !important;
    }
    .company-card__buttons {
        flex-direction: column !important;
        gap: 9px !important;
    }
    .company-card__btn-primary,
    .company-card__btn-review {
        text-align: center !important;
        display: block !important;
    }

    /* Review sticky footer mobile */
    .review-sticky-footer .rsf-text {
        display: none;
    }
    .review-sticky-footer {
        gap: 6px;
        padding: 7px 10px;
        max-height: 47px;
    }

    /* Content minimal side padding on mobile */
    .ojpi-content,
    .ojpi-guide,
    main {
        padding-left: 10px !important;
        padding-right: 7px !important;
    }

    /* FAQ on mobile */
    .ojpi-faq-question {
        font-size: 14px !important;
        padding: 11px 12px !important;
    }
}

/* Ensure nav max-width */
nav .roe-desktop-links {
    max-width: 1500px !important;
}


/* Company info layout fix */
.fb-company-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
}
.fb-company-name {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #161d18 !important;
}
.fb-company-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, #f5f5ca, #f5ec92) !important;
    color: #97370a !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 1px 11px !important;
    border-radius: 13px !important;
}

/* Table header styling */
.fb-companies-table thead th {
    background: #1e1e2f !important;
    color: #fff !important;
    padding: 10px 19px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
    border: none !important;
}
.fb-companies-table tbody tr {
    border-bottom: 1px solid #eee !important;
}
.fb-companies-table tbody td {
    padding: 15px !important;
    vertical-align: middle !important;
}
.fb-companies-table {
    border-collapse: collapse !important;
    background: #fff !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}

/* Rating styles */
.fb-stars .fb-star-full { color: #f4c325 !important; font-size: 16px !important; }
.fb-stars .fb-star-half { color: #f5c62a !important; font-size: 16px !important; }
.fb-stars .fb-star-empty { color: #e3d6d6 !important; font-size: 16px !important; }
.fb-rating-value {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #122011 !important;
}

/* BBB badge */
.fb-bbb-badge {
    display: inline-block !important;
    background: #f0fdf4 !important;
    color: #0da14a !important;
    padding: 3px 15px !important;
    border-radius: 7px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border: 1px solid #bbf5d5 !important;
}

/* Features list */
.fb-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.fb-features-list li {
    padding: 3px 0 !important;
    font-size: 10px !important;
    color: #3f4141 !important;
    position: relative !important;
    padding-left: 18px !important;
}
.fb-features-list li::before {
    content: '\2713' !important;
    position: absolute !important;
    left: 0 !important;
    color: #0cab40 !important;
    font-weight: 700 !important;
}

/* Rank badge */
.fb-rank-badge {
    width: 32px !important;
    height: 32px !important;
    background: linear-gradient(135deg, #23292d, #2b3057) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}
