/* ========================================
   BRIDGE PREMIUM PAGE STYLES
   ======================================== */

.bridge-hero {
    position: relative;
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.08), transparent 50%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent 50%);
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.bridge-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.bridge-hero .hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-secondary);
}

.bridge-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('seamless_integration_premium_1769267335430.png') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    filter: blur(2px);
    z-index: -1;
}

.bridge-concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin: 3rem auto 6rem auto;
    max-width: 1100px;
}

.bridge-concept-grid .content {
    text-align: left;
}

.bridge-visual-container {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bridge-visual-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.bridge-visual-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Study Cards Improvements */
.study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.study-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.study-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-visual {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0f0c1a;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.03), transparent);
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.study-card:hover .step-img {
    transform: scale(1.05);
}

.step-content {
    padding: 2rem;
    padding-top: 1rem;
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 180px;
    right: 1.5rem;
    line-height: 1;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.study-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.study-card p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.section-title-premium {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Platform Link Cards */
.platforms-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.platform-link-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.platform-link-card:hover {
    background: rgba(139, 92, 246, 0.08);
    /* Purple for bridge consistency */
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.2);
}

.platform-logo-premium {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-link-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #fff;
}

.platform-link-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {

    .bridge-concept-grid,
    .platforms-grid-premium,
    .study-grid {
        grid-template-columns: 1fr;
    }

    .bridge-visual-container {
        margin: 20px auto;
    }
}

/* Utilities */
.nav-logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.section-title-centered {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
}

.section-separator {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 1.5rem auto;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.concept-box-premium {
    margin-top: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
}