/* Home Premium Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --accent-color: #3b82f6;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

/* Typography Overrides */
body {
    font-family: 'Inter', 'Outfit', sans-serif;
    background-color: #f8fafc;
}

/* Hero Section */
.hero-premium {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: var(--text-light);
}

.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    z-index: 1;
}

.hero-premium .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeUp 0.8s ease-out 0.4s backwards;
}

/* Glassmorphism Cards (Stats) */
.stats-premium {
    margin-top: -4rem;
    position: relative;
    z-index: 3;
    padding-bottom: 4rem;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card-glass:hover {
    transform: translateY(-5px);
}

.stat-number-lg {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label-sm {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Untitled UI Style Section Headers */
.section-premium {
    padding: 3rem 0;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
}

.eyebrow-premium {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
}

.title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.desc-premium {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature/Sector Cards */
.card-premium {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.card-premium:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.card-image-wrapper {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-premium:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Buttons */
.btn-premium-primary {
    background: #0f172a;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid #0f172a;
}

.btn-premium-primary:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-premium-outline {
    background: transparent;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stats-premium {
        margin-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Enhanced Job Cards */
.job-card-premium {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.job-card-premium:hover::before {
    opacity: 1;
}

.job-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.job-badge-full {
    background: #eff6ff;
    color: #2563eb;
}

.job-badge-part {
    background: #f0fdf4;
    color: #16a34a;
}

.job-badge-contract {
    background: #fff7ed;
    color: #ea580c;
}

.job-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.job-meta-list {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.95rem;
}

.job-meta-item i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.btn-job-apply {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Stunning Section Revamp */
.section-stunning {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: #0f172a;
    /* Fallback */
}

.section-stunning::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.15), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.15), transparent 50%);
    animation: rotateBackground 20s linear infinite;
    z-index: 1;
}

.section-stunning .container {
    position: relative;
    z-index: 2;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Stunning Card */
.job-card-stunning {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #fff;
}

.job-card-stunning::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.job-card-stunning:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.job-card-stunning:hover::after {
    opacity: 1;
}

/* Stunning Typography & Badges */
.stunning-eyebrow {
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.stunning-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.job-stunning-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(4px);
}

.job-stunning-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    line-height: 1.3;
    color: #f8fafc;
}

.job-stunning-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.job-stunning-meta i {
    color: #60a5fa;
    margin-right: 0.5rem;
}

.btn-stunning-apply {
    margin-top: auto;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.btn-stunning-apply:hover {
    background: #60a5fa;
    color: #fff;
}

/* Features Section (Bento Grid) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-icon-bg {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.bento-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.bento-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonial-card-premium {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    position: relative;
    height: 100%;
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: #eff6ff;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-color);
}

.author-info h4 {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    margin: 0;
}

.author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
}

.process-step:hover .step-number {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

.step-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.step-desc {
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-span-2 {
        grid-column: span 1;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-steps::before {
        display: none;
    }
}

/* Split Feature Sections */
.section-split {
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.split-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.split-wrapper.reversed {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Enforce left alignment */
    text-align: left;
    /* Enforce left text */
    min-width: 0;
    /* Prevent flex overflow */
}

/* Override premium title alignment within split sections */
.section-split .title-premium,
.section-split .desc-premium,
.section-split .eyebrow-premium {
    text-align: left;
    width: 100%;
}

.split-image-container {
    flex: 1;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    min-width: 0;
    /* Prevent flex overflow */
}

.split-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.split-image-container:hover .split-image {
    transform: scale(1.05);
}

.check-list {
    margin: 2rem 0;
    list-style: none;
    padding: 0;
    width: 100%;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    /* Align top for multi-line */
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #475569;
    text-align: left;
}

.check-list li i {
    color: var(--accent-color);
    background: #eff6ff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    /* Prevent icon shrinking */
    margin-top: 4px;
    /* Align with text baseline */
}

@media (max-width: 992px) {

    .split-wrapper,
    .split-wrapper.reversed {
        flex-direction: column;
        gap: 2rem;
    }

    .split-image-container {
        width: 100%;
        max-height: 400px;
    }

    .split-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* ============================================
   PREMIUM SPLIT SECTIONS - Modern 2026 Design
   ============================================ */

/* Section Container with Gradient Mesh Background */
.section-split-premium {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    isolation: isolate;
}

/* Animated Gradient Background */
.split-gradient-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 1;
}

/* Blue gradient for employers */
.section-split-employers .split-gradient-bg {
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(147, 197, 253, 0.05) 0%, transparent 50%),
        linear-gradient(to bottom right, #f8fafc 0%, #f1f5f9 100%);
    animation: gradientShift 15s ease infinite;
}

/* Purple gradient for candidates */
.section-split-candidates .split-gradient-bg {
    background: 
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(192, 132, 252, 0.05) 0%, transparent 50%),
        linear-gradient(to bottom left, #faf5ff 0%, #f5f3ff 100%);
    animation: gradientShift 15s ease infinite reverse;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Premium Wrapper */
.split-wrapper-premium {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.split-wrapper-premium.reversed {
    flex-direction: row-reverse;
}

/* Content Side */
.split-content-premium {
    flex: 1;
    min-width: 0;
}

/* Floating Card with Glassmorphism */
.split-card-float {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 
        0 20px 60px -15px rgba(0, 0, 0, 0.1),
        0 10px 30px -10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatIn 0.8s ease-out;
}

.split-card-float:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.15),
        0 15px 40px -15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Typography */
.eyebrow-premium-split {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3b82f6;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 9999px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-split-candidates .eyebrow-premium-split {
    color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border-color: rgba(139, 92, 246, 0.2);
}

.title-premium-split {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.desc-premium-split {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
}

/* Premium Benefits List */
.benefits-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.benefit-item-premium:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* Gradient Icon Badges */
.benefit-icon-premium {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    box-shadow: 0 10px 25px -10px rgba(59, 130, 246, 0.4);
}

.benefit-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: #fff;
    box-shadow: 0 10px 25px -10px rgba(139, 92, 246, 0.4);
}

.benefit-item-premium:hover .benefit-icon-premium {
    transform: scale(1.1) rotate(5deg);
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Modern Button */
.btn-premium-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-premium-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-premium-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -15px rgba(15, 23, 42, 0.4);
}

.btn-premium-modern:hover::before {
    opacity: 1;
}

.btn-premium-modern span,
.btn-premium-modern i {
    position: relative;
    z-index: 1;
}

.btn-premium-modern i {
    transition: transform 0.3s ease;
}

.btn-premium-modern:hover i {
    transform: translateX(5px);
}

/* Image Side */
.split-image-premium {
    flex: 1;
    position: relative;
    min-width: 0;
}

.split-img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    display: block;
    box-shadow: 
        0 25px 60px -15px rgba(0, 0, 0, 0.2),
        0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.split-image-premium:hover .split-img {
    transform: scale(1.02);
}

/* Glow Effect Behind Image */
.image-glow {
    position: absolute;
    inset: -20px;
    border-radius: 2rem;
    opacity: 0.5;
    z-index: -1;
    filter: blur(40px);
    transition: opacity 0.5s ease;
}

.section-split-employers .image-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}

.section-split-candidates .image-glow {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
}

.split-image-premium:hover .image-glow {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-wrapper-premium,
    .split-wrapper-premium.reversed {
        flex-direction: column;
        gap: 3rem;
    }

    .split-card-float {
        padding: 2.5rem;
    }

    .title-premium-split {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-split-premium {
        padding: 4rem 0;
    }

    .split-card-float {
        padding: 2rem;
    }

    .title-premium-split {
        font-size: 2rem;
    }

    .desc-premium-split {
        font-size: 1rem;
    }

    .benefit-item-premium {
        padding: 1rem;
    }

    .benefit-icon-premium {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .btn-premium-modern {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PROCESS TIMELINE - Premium Vertical Design
   ============================================ */

.section-process-premium {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #e2e8f0 0%, #cbd5e1 100%);
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.3s; }
.timeline-item:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.marker-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-dot {
    transform: scale(1.1);
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.6);
}

.marker-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3b82f6;
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.timeline-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-item {
        padding-left: 80px;
    }

    .marker-dot {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .marker-icon {
        display: none;
    }

    .timeline-line {
        left: 30px;
    }
}

/* ============================================
   FEATURED JOBS - Enhanced Dark Section
   ============================================ */

.section-jobs-enhanced {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: #0f172a;
}

.jobs-gradient-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    animation: gradientPulse 20s ease infinite;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.section-header-jobs {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.eyebrow-jobs {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.title-jobs {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-jobs-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-jobs-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.job-card-enhanced {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    overflow: hidden;
}

.job-card-glow {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.job-card-enhanced:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px -20px rgba(59, 130, 246, 0.4);
}

.job-card-enhanced:hover .job-card-glow {
    opacity: 1;
}

.job-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-type-badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.job-sector-tag {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.job-title-enhanced {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.job-meta-enhanced {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.meta-item i {
    color: #60a5fa;
    width: 20px;
}

.btn-job-apply-enhanced {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -10px rgba(59, 130, 246, 0.4);
}

.btn-job-apply-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.6);
}

.btn-job-apply-enhanced i {
    transition: transform 0.3s ease;
}

.btn-job-apply-enhanced:hover i {
    transform: translateX(5px);
}

/* ============================================
   TESTIMONIALS - Enhanced with Stars
   ============================================ */

.section-testimonials-enhanced {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #faf5ff 0%, #f5f3ff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-enhanced {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e9d5ff;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.1);
}

.testimonial-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(139, 92, 246, 0.2);
    border-color: #c084fc;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    font-size: 1rem;
}

.star-filled {
    color: #fbbf24;
}

.star-empty {
    color: #e5e7eb;
}

.testimonial-quote-large {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    color: #f3e8ff;
    font-family: serif;
    line-height: 1;
    font-weight: 700;
}

.testimonial-text-enhanced {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3e8ff;
}

.author-avatar-enhanced {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.author-role {
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA SECTION - Premium Gradient Mesh
   ============================================ */

.section-cta-premium {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: #0f172a;
}

.cta-gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    animation: meshMove 15s ease infinite;
}

@keyframes meshMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.cta-floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.float-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.float-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

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

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

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.7);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-cta-primary i,
.btn-cta-secondary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i,
.btn-cta-secondary:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 100px;
        height: 1px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

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

/* ============================================
   WHY CHOOSE US - Innovative 2026 Design
   No Cards, No Grid - Diagonal Split Layout
   ============================================ */

.section-why-innovative {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0;
    overflow: hidden;
    background: #f8fafc;
}

/* Diagonal Split Background */
.diagonal-split {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #0f172a 45%, 
        #f8fafc 45%, 
        #f8fafc 100%
    );
    z-index: 0;
}

.diagonal-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(59, 130, 246, 0.5), 
        rgba(139, 92, 246, 0.5)
    );
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Morphing Background Blobs */
.morphing-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.morph-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    opacity: 0.15;
    animation: morphing 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b82f6, #8b5cf6);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8b5cf6, #06b6d4);
    bottom: 20%;
    right: 15%;
    animation-delay: 7s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #06b6d4, #3b82f6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 70% 30% 60% 40% / 40% 70% 50% 50%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Header Styling */
.why-header {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 6rem;
}

.eyebrow-glow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #60a5fa;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 9999px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    margin-bottom: 1.5rem;
    animation: glowPulse 3s ease-in-out infinite;
}

.title-massive {
    font-size: 4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.gradient-word {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle-elegant {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* SVG Connection Lines */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height: 600px;
    z-index: 2;
    pointer-events: none;
}

.connect-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

.line-1 { animation-delay: 0.5s; }
.line-2 { animation-delay: 0.7s; }
.line-3 { animation-delay: 0.9s; }
.line-4 { animation-delay: 1.1s; }
.line-5 { animation-delay: 1.3s; }
.line-6 { animation-delay: 1.5s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Floating Feature Bubbles */
.features-floating {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.feature-bubble {
    position: absolute;
    width: 280px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatBubble 6s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 10%;
    right: 5%;
    animation-delay: 1.5s;
}

.bubble-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 3s;
}

.bubble-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.feature-bubble:hover {
    transform: scale(1.1) translateY(-10px);
    z-index: 10;
}

.bubble-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(20px);
}

.feature-bubble:hover .bubble-glow {
    opacity: 1;
}

.bubble-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 
        0 20px 60px -20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.bubble-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-bubble:hover .bubble-content::before {
    opacity: 1;
}

.bubble-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
    transition: all 0.5s ease;
}

.feature-bubble:hover .bubble-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.7);
}

.bubble-info {
    text-align: center;
}

.bubble-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.bubble-info p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-floating {
        height: 800px;
    }

    .bubble-1 { top: 5%; left: 10%; }
    .bubble-2 { top: 5%; right: 10%; }
    .bubble-3 { bottom: 5%; left: 10%; }
    .bubble-4 { bottom: 5%; right: 10%; }
}

@media (max-width: 992px) {
    .diagonal-split {
        background: linear-gradient(to bottom, 
            #0f172a 0%, 
            #0f172a 30%, 
            #f8fafc 30%, 
            #f8fafc 100%
        );
    }

    .diagonal-split::before {
        top: 30%;
        left: 0;
        width: 100%;
        height: 2px;
    }

    .title-massive {
        font-size: 3rem;
    }

    .features-floating {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .feature-bubble {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .connection-lines {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-why-innovative {
        padding: 4rem 0;
    }

    .title-massive {
        font-size: 2.5rem;
    }

    .subtitle-elegant {
        font-size: 1.1rem;
    }

    .feature-bubble {
        width: 100%;
    }

    .bubble-content {
        padding: 1.5rem;
    }

    .bubble-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
