/* Extracted from b2c.html */
:root {
        --light-blue-bg: #E8F4FB;
        --navy-dark: #0A192F;
        --navy-main: #112240;
        --navy-light: #233554;
        --accent-main: #0A4FCC;
        --accent-light: #D9E8FF;
        --gray-text: #64748B;
        --white: #FFFFFF;
    }
    
    body {
        background: var(--light-blue-bg);
        margin: 0;
        font-family: 'Inter', sans-serif;
        color: var(--navy-dark);
        overflow-x: hidden;
    }

    .b2b-page-wrapper {
        padding-top: 100px; /* To clear the fixed header */
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
        position: relative;
        z-index: 2;
    }

    /* Pill Menu Bar */
    .pill-nav-container {
        display: flex;
        justify-content: center;
        margin-bottom: 2.5rem;
        position: sticky;
        top: 80px;
        z-index: 900;
        margin-top: 1rem;
    }
    .pill-nav-inner {
        align-items: center;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        padding: 8px;
        display: flex;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    .pill-home-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        padding: 0 !important;
        margin-left: 4px;
    }
    .pill-home-btn:hover {
        background: #f8f9fa !important;
    }
    .pill-divider {
        width: 1px;
        height: 24px;
        background: rgba(11, 37, 89, 0.15);
        margin: 0 8px;
    }
    .pill-nav-inner a {
        white-space: nowrap;
        text-decoration: none;
        color: var(--navy-light);
        font-size: 0.9rem;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 30px;
        transition: all 0.3s ease;
    }
    .pill-nav-inner a:hover {
        background: rgba(255, 255, 255, 0.8);
    }
    .pill-nav-inner a.active {
        background: var(--white);
        color: var(--navy-dark);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border: 1px solid rgba(10, 79, 204, 0.25);
    }

    /* Hero Section */
    .b2b-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        margin-bottom: 5rem;
        min-height: 500px;
    }
    .b2b-hero-content {
        max-width: 800px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .b2b-hero-bg {
        position: absolute;
        right: -5%;
        top: 0;
        width: 55%;
        height: 100%;
        background-image: none;
        background-size: cover;
        background-position: center;
        mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
        z-index: 1;
        opacity: 0.9;
        border-radius: 20px;
    }
    .hero-label {
        color: #0056b3;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        display: inline-block;
    }
    .b2b-hero h1 {
        font-size: clamp(2.2rem, 4.1vw, 3.2rem);
        line-height: 1.1;
        margin-bottom: 1rem;
        color: var(--navy-main);
        font-weight: 800;
    }
    .b2b-hero .typewriter-title {
        max-width: min(980px, 92vw);
        margin-left: auto;
        margin-right: auto;
    }
    @keyframes typewriter-caret {
        0%, 48% { opacity: 1; }
        49%, 100% { opacity: 0; }
    }
    .b2b-hero p {
        font-size: 1.1rem;
        color: var(--navy-light);
        margin-bottom: 2.5rem;
        max-width: 500px;
        line-height: 1.6;
        font-weight: 500;
    }
    .hero-features {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }
    .hero-feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .hero-feature-icon {
        width: 30px;
        height: 30px;
        color: #0056b3;
    }
    .hero-feature-text strong {
        display: block;
        font-size: 0.95rem;
        color: var(--navy-dark);
        margin-bottom: 0.1rem;
    }
    .hero-feature-text span {
        font-size: 0.85rem;
        color: var(--gray-text);
    }
    .hero-buttons {
        margin-top: 3rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    .btn-blue {
        background: var(--brand-blue, #0A4FCC);
        color: var(--white);
        padding: 14px 28px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(10, 79, 204, 0.25);
    }
    .btn-blue:hover {
        background: #083c99;
        transform: translateY(-2px);
    }
    .btn-outline {
        background: transparent;
        color: var(--navy-dark);
        padding: 14px 28px;
        border-radius: 30px;
        border: 1px solid var(--navy-dark);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }
    .btn-outline:hover {
        background: rgba(17, 34, 64, 0.05);
    }

    /* Services Section */
    .section-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 3rem;
        color: var(--navy-main);
        position: relative;
    }
    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--brand-blue);
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 5rem;
    }
    .service-card {
        background: var(--white);
        border-radius: 20px;
        padding: 2.5rem 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        position: relative;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
    .service-card.highlight {
        border: 1px solid rgba(10, 79, 204, 0.25);
        background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
    }
    .service-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        color: #2563eb;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border: 1px solid #bfdbfe;
        transition: all 0.3s ease;
    }
    .service-card:hover .service-card-icon {
        background: #2563eb;
        color: #ffffff;
        box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
        transform: translateY(-2px);
    }
    .service-card-icon svg {
        width: 28px;
        height: 28px;
        transition: all 0.3s ease;
    }
    /* Unified look for highlight card as well */
    .service-card.highlight .service-card-icon {
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        color: #2563eb;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border: 1px solid #bfdbfe;
    }
    .service-card.highlight:hover .service-card-icon {
        background: #2563eb;
        color: #ffffff;
    }
.service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: var(--navy-dark);
    }
    .service-card p {
        font-size: 0.95rem;
        color: var(--gray-text);
        margin-bottom: 1.5rem;
        line-height: 1.5;
        flex-grow: 1;
    }
    .service-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }
    .service-list li {
        font-size: 0.9rem;
        color: var(--navy-dark);
        margin-bottom: 0.6rem;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }
    .service-list li svg {
        width: 16px;
        height: 16px;
        color: #0056b3;
        flex-shrink: 0;
        margin-top: 3px;
    }
    .service-card.highlight .service-list li svg {
        color: var(--brand-blue);
    }
    .service-link {
        text-decoration: none;
        color: #0056b3;
        font-weight: 600;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    .service-card.highlight .service-link {
        color: var(--brand-blue);
    }

    #servicii .services-grid .service-card {
        overflow: hidden;
        min-height: 520px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.82);
        border-radius: 22px;
        background: #ffffff;
        box-shadow:
            0 24px 58px rgba(6, 32, 76, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.94);
    }

    #servicii .services-grid .service-card::before {
        content: "";
        display: block;
        width: 100%;
        height: 215px;
        background: var(--b2c-service-image) center / cover no-repeat;
        flex: 0 0 215px;
    }

    #servicii .services-grid .service-card:nth-child(1) {
        --b2c-service-image: url("../b2c-service-individual.webp");
    }

    #servicii .services-grid .service-card:nth-child(2) {
        --b2c-service-image: url("../b2c-service-group.webp");
    }

    #servicii .services-grid .service-card:nth-child(3) {
        --b2c-service-image: url("../b2c-service-programs.webp");
    }

    #servicii .services-grid .service-card.highlight {
        border-color: rgba(255, 255, 255, 0.82);
        background: #ffffff;
    }

    #servicii .services-grid .service-card .service-card-icon {
        display: none !important;
    }

    #servicii .services-grid .service-card h3,
    #servicii .services-grid .service-card p,
    #servicii .services-grid .service-card .service-list {
        margin-left: 1.65rem;
        margin-right: 1.65rem;
    }

    #servicii .services-grid .service-card h3 {
        margin-top: 1.65rem;
        color: #07132b;
    }

    #servicii .services-grid .service-card p {
        color: #4d5e78;
        flex-grow: 0;
    }

    #servicii .services-grid .service-card .service-list {
        margin-bottom: 1.75rem;
    }

    #servicii .services-grid .service-card .service-list li {
        color: #07132b;
    }

    /* Themes Section */
    .themes-section {
        margin-bottom: 5rem;
    }
    .themes-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 2rem;
    }
    .themes-header > svg {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: none !important;
    }
    .themes-header h2 {
        font-size: 1.8rem;
        margin: 0;
        color: var(--navy-dark);
    }
    .themes-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .theme-card {
        background: var(--white);
        border-radius: 15px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s;
    }
    .theme-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }
    .theme-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.5rem;
        color: #2563eb;
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        border-radius: 14px;
        padding: 14px;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border: 1px solid #bfdbfe;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    .theme-card:hover .theme-icon {
        background: #2563eb;
        color: #ffffff;
        box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
        transform: translateY(-2px);
    }
    .theme-card > .theme-icon {
        display: none !important;
    }
    .theme-card h3,
    .theme-card h4 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 0;
        line-height: 1.3;
        color: var(--navy-dark);
    }
    .theme-card.ai-data-background-card,
    .theme-card.ai-fraud-background-card,
    .theme-card.apps-data-background-card,
    .theme-card.rights-data-background-card,
    .theme-card.cookies-data-background-card,
    .theme-card.social-data-background-card {
        justify-content: center;
    }
    .theme-card.ai-data-background-card h4,
    .theme-card.ai-fraud-background-card h4,
    .theme-card.apps-data-background-card h4,
    .theme-card.rights-data-background-card h4,
    .theme-card.cookies-data-background-card h4,
    .theme-card.social-data-background-card h4 {
        margin: 0 auto;
        max-width: 18ch;
        text-align: center;
    }
    .theme-card p {
        display: none;
    }
    .theme-card.ai-data-background-card {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        background: var(--theme-card-bg, url("../theme-20260531-ai-data.webp")) center / cover no-repeat;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow: 0 14px 30px rgba(7, 19, 43, 0.14);
    }
    .theme-card.ai-data-background-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 32%, rgba(255,255,255,0.18), rgba(7,19,43,0.08) 42%, rgba(7,19,43,0.32) 100%);
        z-index: -1;
    }
    .theme-card.ai-data-background-card .theme-icon {
        color: #ffffff;
        background: rgba(10, 79, 204, 0.78);
        border-color: rgba(255, 255, 255, 0.75);
        box-shadow: 0 12px 24px rgba(7, 19, 43, 0.22);
    }
    .theme-card.ai-data-background-card h4 {
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(7, 19, 43, 0.34);
    }
    .theme-card.ai-fraud-background-card,
    .theme-card.apps-data-background-card,
    .theme-card.rights-data-background-card,
    .theme-card.cookies-data-background-card,
    .theme-card.social-data-background-card {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        background:
            linear-gradient(180deg, rgba(7, 19, 43, 0.18), rgba(7, 19, 43, 0.50)),
            var(--theme-card-bg) center / cover no-repeat;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow: 0 14px 30px rgba(7, 19, 43, 0.14);
    }
    .theme-card.ai-fraud-background-card { --theme-card-bg: url("../theme-20260531-ai-ethics-fraud.webp"); }
    .theme-card.apps-data-background-card { --theme-card-bg: url("../theme-20260531-ai-apps.webp").webp"); }
    .theme-card.rights-data-background-card { --theme-card-bg: url("../theme-20260531-rights-data.webp").webp"); }
    .theme-card.cookies-data-background-card { --theme-card-bg: url("../theme-20260531-cookies-data.webp").webp"); }
    .theme-card.social-data-background-card { --theme-card-bg: url("../theme-20260531-social-data.webp").webp"); }
    .theme-card.jobs-ai-background-card { --theme-card-bg: url("../theme-20260531-ai-jobs.webp"); }
    .theme-card.tasks-ai-background-card { --theme-card-bg: url("../theme-20260531-ai-tasks.webp").webp"); }
    .theme-card.creator-ai-background-card { --theme-card-bg: url("../theme-20260531-ai-creator.webp").webp"); }
    .theme-card.ethics-ai-background-card { --theme-card-bg: url("../theme-20260531-ai-ethics.png"); }
    .theme-card.relationships-ai-background-card { --theme-card-bg: url("../theme-20260531-ai-relationships.webp"); }
    .theme-card.living-ai-background-card { --theme-card-bg: url("../theme-20260531-ai-living.webp"); }
    .theme-card.phone-data-background-card { --theme-card-bg: url("../theme-20260531-phone-data.webp").webp"); }
    .theme-card.assistant-ai-background-card { --theme-card-bg: url("../theme-20260531-ai-assistant.webp").webp"); }
    .theme-card.parents-ai-background-card { --theme-card-bg: url("../theme-20260531-ai-parents.webp").webp"); }
    .theme-card.parent-guide-background-card { --theme-card-bg: url("../theme-20260531-parent-guide.webp"); }
    .theme-card.phone-assistant-background-card { --theme-card-bg: url("../theme-20260531-phone-assistant.webp"); }
    .theme-card.profiling-ads-background-card { --theme-card-bg: url("../theme-20260531-profiling-ads.webp").webp"); }
    .theme-card.password-security-background-card { --theme-card-bg: url("../theme-20260531-password-security.webp"); }
    .theme-card.posted-data-background-card { --theme-card-bg: url("../theme-20260531-posted-data.webp"); }
    .theme-card.bank-security-background-card { --theme-card-bg: url("../theme-20260531-bank-security.webp").webp"); }
    .theme-card.surveillance-ai-background-card { --theme-card-bg: url("../theme-20260531-surveillance-ai.webp").webp"); }
    .theme-card.safe-internet-background-card { --theme-card-bg: url("../theme-20260531-safe-internet.webp").webp"); }
    .theme-card.exposed-life-background-card { --theme-card-bg: url("../theme-20260531-exposed-life.webp").webp"); }
    .theme-card.jobs-ai-background-card,
    .theme-card.tasks-ai-background-card,
    .theme-card.creator-ai-background-card,
    .theme-card.ethics-ai-background-card,
    .theme-card.relationships-ai-background-card,
    .theme-card.living-ai-background-card,
    .theme-card.phone-data-background-card,
    .theme-card.assistant-ai-background-card,
    .theme-card.parents-ai-background-card,
    .theme-card.parent-guide-background-card,
    .theme-card.phone-assistant-background-card,
    .theme-card.profiling-ads-background-card,
    .theme-card.password-security-background-card,
    .theme-card.posted-data-background-card,
    .theme-card.bank-security-background-card,
    .theme-card.surveillance-ai-background-card,
    .theme-card.safe-internet-background-card,
    .theme-card.exposed-life-background-card {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        justify-content: center;
        background:
            linear-gradient(180deg, rgba(7, 19, 43, 0.18), rgba(7, 19, 43, 0.50)),
            var(--theme-card-bg) center / cover no-repeat !important;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow: 0 14px 30px rgba(7, 19, 43, 0.14);
    }
    .theme-card.jobs-ai-background-card::before,
    .theme-card.tasks-ai-background-card::before,
    .theme-card.creator-ai-background-card::before,
    .theme-card.ethics-ai-background-card::before,
    .theme-card.relationships-ai-background-card::before,
    .theme-card.living-ai-background-card::before,
    .theme-card.phone-data-background-card::before,
    .theme-card.assistant-ai-background-card::before,
    .theme-card.parents-ai-background-card::before,
    .theme-card.parent-guide-background-card::before,
    .theme-card.phone-assistant-background-card::before,
    .theme-card.profiling-ads-background-card::before,
    .theme-card.password-security-background-card::before,
    .theme-card.posted-data-background-card::before,
    .theme-card.bank-security-background-card::before,
    .theme-card.surveillance-ai-background-card::before,
    .theme-card.safe-internet-background-card::before,
    .theme-card.exposed-life-background-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 32%, rgba(255,255,255,0.18), rgba(7,19,43,0.08) 42%, rgba(7,19,43,0.32) 100%);
        z-index: -1;
    }
    .theme-card.jobs-ai-background-card h4,
    .theme-card.tasks-ai-background-card h4,
    .theme-card.creator-ai-background-card h4,
    .theme-card.ethics-ai-background-card h4,
    .theme-card.relationships-ai-background-card h4,
    .theme-card.living-ai-background-card h4,
    .theme-card.phone-data-background-card h4,
    .theme-card.assistant-ai-background-card h4,
    .theme-card.parents-ai-background-card h4,
    .theme-card.parent-guide-background-card h4,
    .theme-card.phone-assistant-background-card h4,
    .theme-card.profiling-ads-background-card h4,
    .theme-card.password-security-background-card h4,
    .theme-card.posted-data-background-card h4,
    .theme-card.bank-security-background-card h4,
    .theme-card.surveillance-ai-background-card h4,
    .theme-card.safe-internet-background-card h4,
    .theme-card.exposed-life-background-card h4 {
        color: #ffffff;
        margin: 0 auto;
        max-width: 18ch;
        text-align: center;
        text-shadow: 0 2px 10px rgba(7, 19, 43, 0.34);
    }
    .theme-card.ai-fraud-background-card::before,
    .theme-card.apps-data-background-card::before,
    .theme-card.rights-data-background-card::before,
    .theme-card.cookies-data-background-card::before,
    .theme-card.social-data-background-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 32%, rgba(255,255,255,0.18), rgba(7,19,43,0.08) 42%, rgba(7,19,43,0.32) 100%);
        z-index: -1;
    }
    .theme-card.ai-fraud-background-card .theme-icon,
    .theme-card.apps-data-background-card .theme-icon,
    .theme-card.rights-data-background-card .theme-icon,
    .theme-card.cookies-data-background-card .theme-icon,
    .theme-card.social-data-background-card .theme-icon {
        color: #ffffff;
        background: rgba(10, 79, 204, 0.78);
        border-color: rgba(255, 255, 255, 0.75);
        box-shadow: 0 12px 24px rgba(7, 19, 43, 0.22);
    }
    .theme-card.ai-fraud-background-card h4,
    .theme-card.apps-data-background-card h4,
    .theme-card.rights-data-background-card h4,
    .theme-card.cookies-data-background-card h4,
    .theme-card.social-data-background-card h4 {
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(7, 19, 43, 0.34);
    }
    .themes-link {
        text-decoration: none;
        color: #0056b3;
        font-weight: 600;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .premium-topics-card {
        min-height: 250px;
        padding: 1.35rem 1.25rem 1.25rem;
        text-decoration: none;
        overflow: hidden;
        isolation: isolate;
        border: 1px solid rgba(255, 255, 255, 0.92);
        border-radius: 16px;
        background:
            radial-gradient(circle at 50% 21%, rgba(10, 79, 204, 0.08), transparent 20%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 255, 0.96) 60%, rgba(216, 233, 255, 0.94) 100%);
        box-shadow:
            0 22px 58px rgba(6, 32, 76, 0.12),
            inset 0 0 0 1px rgba(255, 255, 255, 0.78);
        justify-content: center;
    }
    .premium-topics-card::before {
        content: "";
        position: absolute;
        left: -18%;
        right: -18%;
        bottom: -38%;
        height: 54%;
        border-radius: 50% 50% 0 0;
        background: linear-gradient(180deg, rgba(199, 224, 255, 0.35), rgba(114, 165, 255, 0.55));
        z-index: -1;
    }
    .premium-topics-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 18% 23%, rgba(10, 79, 204, 0.08), transparent 7%),
            radial-gradient(circle at 86% 82%, rgba(10, 79, 204, 0.12), transparent 17%);
        z-index: -1;
        pointer-events: none;
    }
    .premium-topics-card:hover {
        transform: translateY(-4px);
        box-shadow:
            0 28px 68px rgba(6, 32, 76, 0.16),
            inset 0 0 0 1px rgba(255, 255, 255, 0.86);
    }
    .premium-topics-visual {
        position: relative;
        width: min(260px, 100%);
        height: 96px;
        margin: 0.7rem auto 0.75rem;
    }
    .premium-topics-core {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 78px;
        height: 78px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: radial-gradient(circle at 30% 25%, #6ca5ff, #145ee8 62%, #0f4fd0);
        box-shadow:
            0 18px 36px rgba(20, 94, 232, 0.32),
            inset 0 0 0 2px rgba(255, 255, 255, 0.36);
        z-index: 2;
    }
    .premium-topics-core svg {
        width: 34px;
        height: 34px;
    }
    .premium-topics-core::after {
        content: "";
        position: absolute;
        display: none;
        background:
            linear-gradient(105deg, transparent 0 41%, #2f75f2 42% 48%, transparent 49%),
            linear-gradient(72deg, transparent 0 42%, #2f75f2 43% 49%, transparent 50%),
            linear-gradient(140deg, transparent 0 42%, #2f75f2 43% 49%, transparent 50%);
        opacity: 0.9;
    }
    .premium-topics-ghost {
        position: absolute;
        top: 24px;
        width: 78px;
        height: 58px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(10, 79, 204, 0.22);
        background: linear-gradient(135deg, rgba(221, 234, 255, 0.72), rgba(236, 244, 255, 0.4));
        transform: perspective(260px) rotateY(12deg);
    }
    .premium-topics-ghost svg {
        width: 30px;
        height: 30px;
    }
    .premium-topics-ghost.ghost-left {
        left: 0;
    }
    .premium-topics-ghost.ghost-right {
        right: 0;
        transform: perspective(260px) rotateY(-12deg);
    }
    .premium-topics-card h3,
    .premium-topics-card h4 {
        margin: 0;
        color: var(--navy-dark);
        font-size: 1.18rem;
        font-weight: 800;
        line-height: 1.18;
        letter-spacing: 0;
    }
    .premium-topics-card p {
        display: block;
        max-width: 220px;
        margin: 0.55rem auto 1rem;
        color: #5d6f91;
        font-size: 0.88rem;
        line-height: 1.35;
    }
    .premium-topics-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        min-width: 0;
        width: 100%;
        padding: 0.78rem 1rem;
        border-radius: 14px;
        color: #0b55d9;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(10, 79, 204, 0.08);
        box-shadow: 0 14px 30px rgba(10, 79, 204, 0.16);
        font-size: 0.95rem;
        font-weight: 800;
    }
    .premium-topics-button svg {
        width: 19px;
        height: 19px;
        transition: transform 0.25s ease;
    }
    .premium-topics-card:hover .premium-topics-button svg {
        transform: translateX(5px);
    }

    .premium-topics-card.theme-card,
    .themes-grid .premium-topics-card.cta-card {
        background: url("../b2c-all-themes-glass-jun1.webp") center / cover no-repeat !important;
        border-color: rgba(255, 255, 255, 0.78) !important;
        box-shadow: 0 16px 36px rgba(6, 32, 76, 0.12) !important;
    }

    .premium-topics-card.theme-card::before,
    .premium-topics-card.theme-card::after,
    .themes-grid .premium-topics-card.cta-card::before,
    .themes-grid .premium-topics-card.cta-card::after {
        display: none !important;
        content: none !important;
        background: none !important;
    }

    .premium-topics-card .premium-topics-visual {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .premium-topics-card h3,
    .premium-topics-card h4,
    .premium-topics-card p {
        color: #ffffff !important;
        text-shadow: none !important;
    }

    /* 3 Columns Features */
    .features-split {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        margin-bottom: 5rem;
    }
    .feature-box {
        background: rgba(255,255,255,0.4);
        border-radius: 20px;
        padding: 2rem;
        position: relative;
        overflow: hidden;
    }
    .feature-box-bg-icon {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 150px;
        height: 150px;
        color: rgba(0, 86, 179, 0.05);
        z-index: 0;
    }
    .feature-box h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 0.8rem;
        color: var(--navy-dark);
        position: relative;
        z-index: 1;
    }
    .work-list, .format-list {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 1;
    }
    .work-list li {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: var(--navy-dark);
    }
    .work-list li svg {
        flex-shrink: 0;
        color: #0056b3;
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }
    .format-list li {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--navy-dark);
    }
    .format-list li svg {
        flex-shrink: 0;
        color: var(--navy-light);
        width: 20px;
        height: 20px;
    }
    
    .who-card {
        background: var(--white);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.04);
        height: 100%;
        box-sizing: border-box;
    }
    .who-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 0.8rem;
        color: var(--navy-dark);
    }
    .who-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 1.5rem;
    }
    .who-item:last-child {
        margin-bottom: 0;
    }
    .who-item svg {
        width: 24px;
        height: 24px;
        color: #0056b3;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .who-item h4 {
        margin: 0 0 0.3rem 0;
        font-size: 0.95rem;
        color: var(--navy-dark);
    }
    .who-item p {
        margin: 0;
        font-size: 0.85rem;
        color: var(--gray-text);
        line-height: 1.4;
    }

    /* Footer Banner */
    .footer-cta {
        background: var(--navy-main);
        border-radius: 20px;
        padding: 3rem 4rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--white);
        margin-bottom: 4rem;
        box-shadow: 0 15px 40px rgba(17, 34, 64, 0.2);
        position: relative;
        overflow: hidden;
    }
    .footer-cta-bg {
        position: absolute;
        left: -30px;
        top: -30px;
        width: 150px;
        height: 150px;
        color: rgba(255,255,255,0.05);
    }
    .cta-text {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        position: relative;
        z-index: 1;
    }
    .cta-text svg {
        width: 60px;
        height: 60px;
        color: rgba(255,255,255,0.8);
    }
    .cta-text-inner h2 {
        margin: 0 0 0.5rem 0;
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: -0.5px;
    }
    .cta-text-inner p {
        margin: 0;
        font-size: 1.05rem;
        color: rgba(255,255,255,0.8);
    }
    .cta-button-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.8rem;
        position: relative;
        z-index: 1;
    }
    .secure-note {
        font-size: 0.86rem;
        color: rgba(255,255,255,0.86);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    @media (max-width: 1200px) {
        .themes-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 1024px) {
        .services-grid { grid-template-columns: 1fr; }
        .features-split { grid-template-columns: 1fr; }
        .b2b-hero-bg { width: 50%; mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%); }
    }
    @media (max-width: 768px) {
        .b2b-hero { flex-direction: column; padding-top: 2rem; margin-bottom: 3rem; }
        .b2b-hero-bg { display: none; }
        .b2b-hero h1 { font-size: 2.2rem; }
        .b2b-hero .typewriter-title { line-height: 1.12; }
        .hero-features { flex-direction: column; gap: 1.5rem; }
        .hero-buttons { flex-direction: column; }
        .themes-header { align-items: flex-start; gap: 18px; }
        .themes-header > svg {
            width: 48px;
            height: 48px;
            flex-basis: 48px;
            margin-top: 0.35rem;
        }
        .themes-grid { grid-template-columns: 1fr 1fr; }
        .footer-cta { flex-direction: column; text-align: center; gap: 2rem; padding: 2rem; }
        .cta-text { flex-direction: column; }
        .cta-button-container { align-items: center; }
        .pill-nav-container { justify-content: flex-start; overflow-x: auto; padding-bottom: 5px; -ms-overflow-style: none; scrollbar-width: none; }
        .pill-nav-container::-webkit-scrollbar { display: none; }
        .pill-nav-inner { flex-wrap: nowrap; justify-content: flex-start; width: max-content; padding-right: 20px; }
        .b2b-page-wrapper { padding-left: 1rem; padding-right: 1rem; }
    }
    @media (max-width: 480px) {
        .b2b-hero .typewriter-title {
            font-size: clamp(1.72rem, 8vw, 2.2rem);
        }
        .themes-grid { grid-template-columns: 1fr; }
    }

/* Premium Features Split (3 Columns) */
.premium-features-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.pf-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}
.pf-header {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
}
.pf-header-text h3 {
    margin: 0 0 4px 0;
    font-size: 22px;
    color: #0f172a;
    font-weight: 700;
}
.pf-header-text p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.premium-features-split .pf-header-text,
.premium-features-split .pf-item-text {
    width: 100%;
}

.pf-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}
.pf-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    min-height: 90px;
}
.pf-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    min-height: auto;
}
.c-purple { background: #f3e8ff; color: #9333ea; }
.c-orange { background: #ffedd5; color: #ea580c; }
.c-green { background: #dcfce7; color: #16a34a; }
.c-blue { background: #e0f2fe; color: #0284c7; }
.c-pink { background: #fce7f3; color: #db2777; }
.c-blue-light { background: #eff6ff; color: #2563eb; }
.c-green-light { background: #f0fdf4; color: #22c55e; }

.pf-item-text h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #0f172a;
    font-weight: 600;
}
.pf-item-text p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}
.pf-footer {
    text-align: center;
    padding-top: 20px;
}
.pf-link {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}
.pf-link:hover {
    opacity: 0.8;
}
.l-purple { color: #9333ea; }
.l-blue { color: #2563eb; }
.l-green { color: #16a34a; }

@media (max-width: 768px) { .pill-nav-container { position: relative !important; top: auto !important; margin-bottom: 1rem !important; } }

@media (max-width: 768px) {
    .themes-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .themes-grid .theme-card:not(.cta-card) {
        width: 100% !important;
        min-height: 205px !important;
        height: 205px !important;
        aspect-ratio: auto !important;
        padding: 1.35rem 1.1rem !important;
        border-radius: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .themes-grid .theme-card:not(.cta-card) h4 {
        margin: 0 auto !important;
        max-width: 18ch !important;
        font-size: clamp(1.15rem, 6vw, 1.45rem) !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .themes-grid .theme-card.cta-card {
        min-height: 260px !important;
        height: 260px !important;
    }
}

/* Clean theme-card backgrounds: no overlay, vignette, or dark shadow. */
.theme-card.ai-data-background-card { --theme-card-bg: url("../theme-20260531-ai-data.webp") !important; }
.theme-card.ai-fraud-background-card { --theme-card-bg: url("../theme-20260531-ai-ethics-fraud.webp") !important; }
.theme-card.apps-data-background-card { --theme-card-bg: url("../theme-20260531-ai-apps.webp") !important; }
.theme-card.rights-data-background-card { --theme-card-bg: url("../theme-20260531-rights-data.webp") !important; }
.theme-card.cookies-data-background-card { --theme-card-bg: url("../theme-20260531-cookies-data.webp") !important; }
.theme-card.social-data-background-card { --theme-card-bg: url("../theme-20260531-social-data.webp") !important; }

.theme-card.ai-data-background-card,
.theme-card.ai-fraud-background-card,
.theme-card.apps-data-background-card,
.theme-card.rights-data-background-card,
.theme-card.cookies-data-background-card,
.theme-card.social-data-background-card {
    background: var(--theme-card-bg) center / cover no-repeat !important;
    box-shadow: none !important;
}

.theme-card.ai-data-background-card::before,
.theme-card.ai-fraud-background-card::before,
.theme-card.apps-data-background-card::before,
.theme-card.rights-data-background-card::before,
.theme-card.cookies-data-background-card::before,
.theme-card.social-data-background-card::before {
    display: none !important;
    content: none !important;
    background: none !important;
}

.theme-card.ai-data-background-card h4,
.theme-card.ai-fraud-background-card h4,
.theme-card.apps-data-background-card h4,
.theme-card.rights-data-background-card h4,
.theme-card.cookies-data-background-card h4,
.theme-card.social-data-background-card h4 {
    text-shadow: none !important;
}

.themes-grid .theme-card:not(.cta-card) {
    justify-content: flex-end !important;
    padding-bottom: 1.25rem !important;
}

.themes-grid .theme-card:not(.cta-card) h4 {
    margin-top: auto !important;
    margin-bottom: 0 !important;
}

.themes-grid .premium-topics-card.cta-card {
    justify-content: flex-end !important;
    padding-bottom: 1.05rem !important;
}

.premium-topics-card .premium-topics-visual {
    display: none !important;
}

.premium-topics-card p,
.premium-topics-card .premium-topics-button {
    display: none !important;
}

.premium-topics-card h3,
.premium-topics-card h4 {
    margin: auto auto 0 !important;
    text-align: center !important;
    max-width: 16ch !important;
}
