/* Pricing Toggle Switch */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--primary-blue);
    font-weight: 700;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-blue);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-blue);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background-color: #e6ffed;
    color: var(--accent-green);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin-top: 4rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    width: 40%;
}

.comparison-table th {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.check-icon {
    color: var(--accent-green);
    font-weight: bold;
}

/* Detailed How It Works */
.process-timeline {
    background-color: var(--bg-white);
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Connecting line */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 29px; /* Center of 60px circle */
    width: 2px;
    background: #e0e6ed;
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background-color: var(--primary-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(10, 30, 143, 0.2);
    border: 4px solid white; /* Creates gap from line */
}

.process-content {
    padding-top: 0.5rem;
}

.process-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.process-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 19px; /* Center of 40px circle */
    }

    .process-step {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-width: 3px;
    }
    
    .process-content h3 {
        font-size: 1.25rem;
    }

    .process-content p {
        font-size: 1rem;
    }

    .comparison-table-container {
        margin-top: 2rem;
    }
    
    .pricing-toggle-container {
        margin-bottom: 2rem;
    }
}
