/* ============================================
   Case Studies Index Page Styles
   ============================================ */

:root {
    --case-primary: #1760bb;
    --case-primary-dark: #10509e;
    --case-primary-light: #f8fbff;
    --case-accent: #1760bb;
    --case-secondary: #fffbe0;
    --case-border: #e3edfa;
    --case-shadow: 0 8px 32px 0 rgba(23, 96, 187, 0.15);
    --case-text-main: #2c3e50;
}

/* MAIN BG */
.case-main-bg {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f2f7fc 0%, #e3edfa 100%);
    padding-top: 120px !important; /* Account for fixed header (40px mini-header + 80px navbar) */
    margin-top: 0 !important; /* Ensure no negative margin */
}

.case-hero-section {
    min-height: 400px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.2);
    border-radius: 0 0 3rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    padding-top: 120px;
    padding-bottom: 3rem;
    position: relative;
    z-index: 4;
    overflow: hidden;
}

.case-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.case-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.case-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    animation: caseFadeInUp 0.6s ease-out;
    padding: 0 2rem;
}

.case-hero-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    animation: caseFadeInUp 0.6s ease-out 0.2s both;
    padding: 0 2rem;
}

@keyframes caseFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CASE STUDY GRID */
.case-section-main {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 2rem 2rem;
    margin-top: -90px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    padding: 3rem 3rem 2rem 3rem;
    margin-bottom: 3rem;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
}

.case-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 450px;
    overflow: hidden;
    border: 1.5px solid #e3edfa;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.case-card:hover::before {
    transform: scaleX(1);
}

.case-card:hover {
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.2);
    transform: translateY(-8px);
    border-color: #1760bb;
}

.case-thumb-wrap {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #e3edfa 0%, #f2f7fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #e3edfa;
    transition: all 0.3s ease;
    position: relative;
}

.case-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: brightness(0.98);
}

.case-card:hover .case-thumb {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.case-card-body {
    padding: 2rem 1.75rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
}

.case-title {
    font-size: 1.35rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.case-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-title a:hover,
.case-title a:focus:not(:focus-visible) {
    color: #1760bb;
    text-decoration: none;
    outline: none !important;
}

.case-title a:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}

.case-card:hover .case-title {
    color: #1760bb;
}

.case-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #5e7ba7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.case-meta i {
    color: #1760bb;
    margin-right: 4px;
    font-size: 1rem;
    opacity: 0.9;
}

.case-desc {
    color: #495057;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    word-break: break-word;
    min-height: 60px;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.case-tag {
    background: rgba(23, 96, 187, 0.1);
    color: #1760bb;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(23, 96, 187, 0.2);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
}

.case-tag:hover,
.case-tag:focus:not(:focus-visible) {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff;
    border-color: #1760bb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 96, 187, 0.3);
    text-decoration: none;
    outline: none !important;
}

.case-tag:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}

/* CTA BOX */
.case-cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.15);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 1.5px solid rgba(23, 96, 187, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.case-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
}

.case-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.2);
}

.case-cta-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.case-cta-desc {
    color: #5e7ba7;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-weight: 400;
}

.case-cta-btn {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(23, 96, 187, 0.3);
    position: relative;
    overflow: hidden;
}

.case-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.case-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.case-cta-btn:hover,
.case-cta-btn:focus:not(:focus-visible) {
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
    color: #fff;
    box-shadow: 0 10px 35px rgba(23, 96, 187, 0.4);
    transform: translateY(-3px);
    text-decoration: none;
    outline: none !important;
    border: none !important;
}

.case-cta-btn:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}

.case-cta-btn:active {
    transform: translateY(-1px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .case-main-bg {
        padding-top: 110px; /* Slightly less on tablets */
    }
    
    .case-hero-section {
        margin-top: -110px; /* Offset the wrapper padding */
        padding-top: 110px; /* Account for fixed header on tablets */
    }
    
    .case-section-main {
        padding: 0 1rem;
    }
    .case-study-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }
    .case-card-body {
        padding: 1.75rem 1.5rem;
    }
    .case-hero-title {
        font-size: 2.5rem;
    }
    .case-hero-desc {
        font-size: 1.1rem;
    }
    .case-thumb-wrap {
        height: 220px;
    }
    .case-cta-box {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .case-main-bg,
    .case-detail-wrapper {
        padding-top: 120px !important; /* Account for mobile header (auto mini-header ~50px + 80px navbar) */
        margin-top: 0 !important; /* Ensure no negative margin */
    }
    
    .case-hero-section {
        margin-top: -120px !important; /* Offset the wrapper padding */
        padding-top: 120px !important; /* Account for fixed header on mobile */
        padding-bottom: 2.5rem;
        border-radius: 0 0 2rem 2rem;
        min-height: 320px;
        position: relative;
        z-index: 2;
    }
    .case-hero-title {
        font-size: 2rem;
        padding: 0 1.5rem;
        margin-bottom: 0.75rem;
    }
    .case-hero-desc {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1.5rem;
    }
    .case-hero-inner {
        padding: 0;
    }
    .case-section-main {
        margin-top: -50px;
        padding: 0 1rem;
        position: relative;
        z-index: 3;
    }
    .case-study-grid {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .case-card {
        min-height: 380px;
    }
    .case-thumb-wrap {
        height: 200px;
    }
    .case-cta-box {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    .case-cta-title {
        font-size: 1.5rem;
    }
    .case-cta-desc {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .case-hero-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    .case-hero-desc {
        padding: 0 1rem;
    }
    .case-hero-section {
        margin-top: -120px !important;
        padding-top: 120px !important;
        padding-bottom: 2rem;
        min-height: 280px;
    }
    .case-study-grid {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }
    .case-card {
        min-height: 350px;
        border-radius: 16px;
    }
    .case-thumb-wrap {
        height: 180px;
    }
    .case-title {
        font-size: 1.15rem;
    }
    .case-cta-title {
        font-size: 1.3rem;
    }
    .case-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   Case Studies Details Page Styles
   ============================================ */

.case-detail-wrapper {
    min-height: 100vh;
    padding-top: 120px !important; /* Account for fixed header (40px mini-header + 80px navbar) */
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #f2f7fc 0%, #e3edfa 100%);
    margin-top: 0 !important; /* Ensure no negative margin */
}

.valinor-banner-section {
    width: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    padding: 0;
    margin-top: -120px;
    margin-bottom: 0;
    padding-top: 120px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.2);
    border-radius: 0 0 3rem 3rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.valinor-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.valinor-banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem 3rem 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.valinor-banner-img {
    flex: 1 1 350px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 260px;
    animation: caseFadeInRight 0.8s ease-out 0.3s both;
}

.valinor-banner-img img {
    width: 96%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    background: #fff;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.valinor-banner-img img:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
}

.valinor-banner-content {
    flex: 2 1 500px;
    padding-right: 1.6rem;
    animation: caseFadeInUp 0.8s ease-out;
    width: 100%;
}

.valinor-banner-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    display: block;
}

.valinor-banner-content h1 span {
    color: #ffffff !important;
    font-weight: 700 !important;
    display: inline;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.vbc-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.8;
    max-width: 650px;
    display: block;
}

@keyframes caseFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.valinor-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
}

.valinor-meta-item {
    animation: caseFadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.valinor-meta-item:nth-child(1) { animation-delay: 0.1s; }
.valinor-meta-item:nth-child(2) { animation-delay: 0.2s; }
.valinor-meta-item:nth-child(3) { animation-delay: 0.3s; }
.valinor-meta-item:nth-child(4) { animation-delay: 0.4s; }

.valinor-meta-item span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.valinor-meta-item strong {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: block;
    line-height: 1.4;
}

.valinor-keypoints {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.valinor-keypoint {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.valinor-keypoint:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.valinor-section {
    max-width: 1100px;
    margin: 2.5rem auto 0 auto;
    padding: 3rem 3rem 2.5rem 3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    animation: caseFadeInUp 0.7s cubic-bezier(0.27, 0.67, 0.51, 1) forwards;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.valinor-section:nth-child(1) { animation-delay: 0.1s; }
.valinor-section:nth-child(2) { animation-delay: 0.2s; }
.valinor-section:nth-child(3) { animation-delay: 0.3s; }
.valinor-section:nth-child(4) { animation-delay: 0.4s; }
.valinor-section:nth-child(5) { animation-delay: 0.5s; }

.valinor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transition: width 0.3s ease;
}

.valinor-section:hover {
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.18);
    transform: translateY(-3px);
    border-color: rgba(23, 96, 187, 0.2);
}

.valinor-section:hover::before {
    width: 6px;
}

.valinor-section + .valinor-section {
    margin-top: 2rem;
}

.valinor-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
    line-height: 1.3;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.valinor-section h2::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.valinor-section h2 i {
    color: #1760bb;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.valinor-section p,
.valinor-section ul,
.valinor-section ol {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.valinor-section ul,
.valinor-section ol {
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

.valinor-section ul {
    list-style: none;
}

.valinor-section ul li {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    padding-left: 1.75rem;
    position: relative;
    color: #495057;
}

.valinor-section ul li::before {
    content: '\f00c';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #1760bb;
    font-size: 1.1rem;
    font-weight: 700;
}

.valinor-section ul li:hover {
    color: #1760bb;
    transform: translateX(4px);
    cursor: default;
}

/* Responsive Styles for Details Page */
@media (max-width: 991.98px) {
    .valinor-banner-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem 2.5rem 1.5rem;
    }
    .valinor-banner-content {
        padding-right: 0;
        text-align: center;
    }
    .valinor-banner-content h1 {
        font-size: 2.5rem;
    }
    .vbc-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .valinor-banner-img {
        justify-content: center;
        margin-top: 0;
    }
    .valinor-banner-img img {
        width: 85%;
        min-width: 200px;
        max-width: 320px;
    }
    .valinor-meta-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .valinor-section {
        padding: 2.5rem 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .case-detail-wrapper {
        padding-top: 120px !important;
        margin-top: 0 !important;
    }
    .valinor-banner-section {
        margin-top: -120px !important;
        padding-top: 120px !important;
        border-radius: 0 0 2rem 2rem;
        position: relative;
        z-index: 2;
    }
    .valinor-banner-wrapper {
        padding: 2.5rem 1.25rem 2rem 1.25rem;
    }
    .valinor-banner-content h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    .valinor-banner-content h1 span {
        color: #ffffff !important;
        font-weight: 700 !important;
        display: inline;
    }
    .vbc-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }
    .valinor-meta-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .valinor-keypoints {
        justify-content: center;
    }
    .valinor-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .valinor-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .valinor-banner-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    .valinor-banner-content h1 span {
        color: #ffffff !important;
        font-weight: 700 !important;
        display: inline;
    }
    .vbc-subtitle {
        font-size: 1rem;
    }
    .valinor-meta-item strong {
        font-size: 1rem;
    }
    .valinor-keypoint {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
        min-width: 100px;
    }
    .valinor-section {
        padding: 1.75rem 1.25rem;
    }
    .valinor-section h2 {
        font-size: 1.3rem;
    }
    .valinor-section p,
    .valinor-section ul,
    .valinor-section ol {
        font-size: 1rem;
    }
}

/* ============================================
   CSS OPTIMIZATION COMPLETE
   - Fixed focus outline issues (removed unwanted borders on click)
   - Added focus-visible for keyboard navigation accessibility
   - Optimized animations and transitions
   - Professional, clean & smooth design maintained
   ============================================ */
