/* ==================== Conversion Sections CSS ==================== */

/* --- Common Variables --- */
:root {
    --primary-color: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --bg-dark: #09090b;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-muted: #a1a1aa;
    --text-light: #ffffff;
}

/* ==================== 1. My Process Section ==================== */
.process-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-eyebrow {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.process-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.process-title span {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Timeline Container */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vertical Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(59, 130, 246, 0.5) 15%,
            rgba(59, 130, 246, 0.5) 85%,
            transparent 100%);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Alternating Layout */
.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-content {
    width: 45%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-content:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    /* Very subtle watermark */
    line-height: 1;
}

.process-step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-step-title i {
    color: var(--primary-color);
    font-size: 20px;
}

.process-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Center Dot */
.process-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--primary-glow);
}

.process-step:hover .process-dot {
    background-color: var(--primary-color);
    box-shadow: 0 0 25px var(--primary-color);
}


/* ==================== 2. Comparison Section (The Dhruv Difference) ==================== */
.comparison-section {
    padding: 100px 0;
    background-color: #0c0c0e;
    position: relative;
    overflow: hidden;
}

/* Background Glow for Section */
/* Background Glow for Section */
.comparison-section::before {
    display: none;
    /* Removed old glow */
}

/* Background Grid Pattern */
.comp-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

/* Animated Glow Orbs */
.comp-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: floatGlow 10s infinite alternate ease-in-out;
}

.comp-bg-glow.top-left {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.comp-bg-glow.bottom-right {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    /* Purple hint */
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.comparison-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    /* Two cols + center gap */
    align-items: stretch;
    /* Stretch height */
    gap: 0;
    position: relative;
    z-index: 1;
}

/* VS Badge in Center */
.vs-badge {
    width: 60px;
    height: 60px;
    background: #09090b;
    border: 2px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-light);
    font-size: 16px;
    z-index: 10;
    margin: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

.comp-col {
    padding: 50px 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

/* Generic Freelancer Column */
.comp-col.generic {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-right: 60px;
    /* Space for VS badge overlap if needed */
}

.comp-col.generic .comp-header h3 {
    color: var(--text-muted);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

/* Dhruv Column - Improved Design */
.comp-col.premium {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgba(9, 9, 11, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 20px 60px -10px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    /* Inner border */
    transform: scale(1.05);
    /* Make it bigger */
    position: relative;
    overflow: visible;
    /* For crown */
    z-index: 5;
}

/* Premium Crown Icon */
.premium-crown {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    /* Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
    animation: bounceCrown 3s infinite ease-in-out;
}

@keyframes bounceCrown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Inner Glow Corner */
.premium-corner-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.4), transparent 70%);
    border-top-right-radius: 24px;
}

.comp-col.premium .comp-header h3 {
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.comp-col.premium .comp-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comp-col.premium .comp-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
    /* Slide effect */
}

.comp-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

/* Icons */
.comp-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    /* Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.comp-icon.bad {
    color: #ef4444;
}

.comp-col.generic .comp-icon-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-icon.good {
    color: #fff;
}

.comp-col.premium .comp-icon-box {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-text-bad {
    color: #71717a;
    font-size: 15px;
}

.comp-text-good {
    color: #f4f4f5;
    font-size: 16px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: flex-start;
    }

    .vs-badge {
        display: none;
    }

    .comp-col.premium {
        transform: scale(1);
        margin-top: 20px;
    }

    .comp-col.generic {
        border-radius: 24px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }

    .process-content {
        width: 100%;
        margin-top: 20px;
    }

    .process-dot {
        left: 20px;
    }
}